js生成验证码并验证 .

  1. <html>  
  2.     <head>  
  3.         <title>验证码</title>  
  4.         <style type="text/css">  
  5.             .code  
  6.             {  
  7.                 font-family:Arial;  
  8.                 font-style:italic;  
  9.                 font-weight:bold;  
  10.                 border:0;  
  11.                 letter-spacing:3px;  
  12.                 color:blue;  
  13.             }  
  14.         </style>  
  15.         <script type = "text/javascript" src = "checkCode.js">  
  16.         </script>  
  17.     </head>  
  18.     <body>  
  19.         <div>  
  20.             <input type = "text" id = "input"/>  
  21.             <input type = "button" id="checkCode" class"code" onclick="createCode()"/>  
  22.             <a href = "#" onclick = "createCode()">看不清楚</a><br>  
  23.             <input type = "button" value = "验证" onclick = "validate()"/>  
  24.         </div>  
  25.     </body>  
  26. </html>  
<html>
	<head>
		<title>验证码</title>
		<style type="text/css">
			.code
			{
				font-family:Arial;
				font-style:italic;
				font-weight:bold;
				border:0;
				letter-spacing:3px;
				color:blue;
			}
		</style>
		<script type = "text/javascript" src = "checkCode.js">
		</script>
	</head>
	<body>
		<div>
			<input type = "text" id = "input"/>
			<input type = "button" id="checkCode" class= "code" οnclick="createCode()"/>
			<a href = "#" onclick = "createCode()">看不清楚</a><br>
			<input type = "button" value = "验证" onclick = "validate()"/>
		</div>
	</body>
</html>


checkCode.js

[javascript] view plain copy print ?
  1. var code ; //在全局定义验证码    
  2. //产生验证码   
  3. window.onload = function createCode(){  
  4.      code = "";   
  5.      var codeLength = 4;//验证码的长度   
  6.      var checkCode = document.getElementById("checkCode");   
  7.      var random = new Array(0,1,2,3,4,5,6,7,8,9,'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R',  
  8.      'S','T','U','V','W','X','Y','Z');//随机数   
  9.      for(var i = 0; i < codeLength; i++) {//循环操作   
  10.         var charIndex = Math.floor(Math.random()*36);//取得随机数的索引   
  11.         code += random[charIndex];//根据索引取得随机数加到code上   
  12.     }  
  13.     checkCode.value = code;//把code值赋给验证码   
  14. }  
  15. //校验验证码   
  16. function validate(){  
  17.     var inputCode = document.getElementById("input").value.toUpperCase(); //取得输入的验证码并转化为大写         
  18.     if(inputCode.length <= 0) { //若输入的验证码长度为0   
  19.         alert("请输入验证码!"); //则弹出请输入验证码   
  20.     }         
  21.     else if(inputCode != code ) { //若输入的验证码与产生的验证码不一致时   
  22.         alert("验证码输入错误!"); //则弹出验证码输入错误   
  23.         createCode();//刷新验证码   
  24.     }         
  25.     else { //输入正确时   
  26.         alert("^-^"); //弹出^-^   
  27.     }             
  28. }  

 

转自 http://blog.csdn.net/lwcumt/article/details/8065503

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值