js 与jquery 点击刷新验证码代码

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>js 代码</title>
</head>

<body>

<tr>
          <td height="25" align="right">验证码:</td>
          <td width="14%"><input name="ver" type="text" class="input1" id="ver" size="5"></td>
          <td width="40%"><img src="../inc/ver.php教程" onclick="this.src='../inc/ver.php';" /></td>
          <td></td>
        </tr>

 
 
jquery 刷新验证码代码

<script>
function changeauthcode() {
 var num =  new date().gettime();
 var rand = math.round(math.random() * 10000);
 num = num + rand;
 $('#ver_code').css教程('visibility','visible');
 if ($("#vdimgck")[0]) {
  $("#vdimgck")[0].src = "../www.111cn.net/vdimgck.php?tag=" + num;
 }
 return false; 
}
</script>

 <li><span>验证码:</span>
            <input type="text" class="intxt w200" style="width: 50px; text-transform: uppercase;" id="vdcode" name="vdcode"/><img id="vdimgck" align="absmiddle" onclick="this.src=this.src+'?'" style="cursor: pointer;" alt="看不清?点击更换" src="../include/vdimgck.php"/>
           看不清? <a href="javascript:void(0)" onclick="changeauthcode();">点击更换</a></li>

</body>
</html>

时间: 2024-10-04 10:06:39

js 与jquery 点击刷新验证码代码的相关文章

J2EE验证码图片如何生成和点击刷新验证码_java

验证码图片生成步骤 创建BufferedImage对象. 获取BufferedImage的画笔,即调用getGraphics()方法获取Graphics对象. 调用Graphics对象的setColor()方法和fillRect()方法设置图片背景颜色. 调用Graphics对象的setColor()方法和drawLine()方法设置图片干扰线. 调用BufferedImaged对象的setRGB()方法设置图片的噪点. 调用Graphics对象的setColor()方法.setFont()方法

jquery实现无刷新验证码的简单实例_jquery

1. 思路: 页面上的验证码图片是servlet,采用jquery实现异步校验信息 2. 所用到的文件 VerifyCodeServlet.java   --用于生成图片的servlet ResultServlet.java          --用于校验验证码正确性的servlet verifyCode.js                  --校验的js文件 jquery.js                         --jquery包里的源文件 verifyCode.jsp   

js刷新验证码(点击刷新验证码)

  <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="conten

帝国cms点击刷新验证码方法

<img src="/e/ShowKey/?v=gbook" onClick="this.src= this.src +'&xx='+Math.random()" alt="看不清楚,点击刷新"> 在留言板的验证码下实现. <img src="/e/ShowKey/?v=login" onClick="this.src= this.src +'&xx='+Math.random()&

JQuery JSon 无刷新分页代码

需要四个文件 一个实体类文件 CategoryInfoModel.cs 一个SqlHelper SQLHelper.cs 一个AJAX服务端处理程序 PagedService.ashx 一个客户端调用页面 WSXFY.htm CategoryInfoModel.cs和SQLHelper.cs我就不写了,都知道是什么文件 PagedService.ashx 代码如下 using System.Web.Script.Serialization; public void ProcessRequest(

jQuery 三击事件实现代码_jquery

直接给出代码如下: 复制代码 代码如下: jQuery.event.special.tripleclick = {    setup: function(data, namespaces) {        var elem = this, $elem = jQuery(elem);        $elem.bind('click', jQuery.event.special.tripleclick.handler);    },     teardown: function(namespac

点击刷新验证码部分

 代码如下 复制代码 <script type="text/javascript"> //<![CDATA[ $(document).ready(function(){     $("#send").click(function(){         $("#cpatch").attr("src",'cpatch.php');     }); }); //]]> </script> <

PHP生成可点击刷新的验证码简单示例_php技巧

本文实例讲述了PHP生成可点击刷新的验证码.分享给大家供大家参考,具体如下: html文件: <html> <head> <title>验证码</title> </head> <script type="text/javascript"> function yanzheng(){ var im=document.getElementsByTagName("img"); im[0].src=&qu

jQuery点击输入框显示验证码图片_jquery

先看效果图: 要求:当输入框获得焦点时,自动显示验证图片. 代码如下(学习而已,仅供参考): /***********************下是验证码对象*****************/ var Validation = {}; Validation.init = function(eleName,imageSrc){ this.image = imageSrc; $('#'+eleName).focusin(function(){ Validation.show(eleName); })