首页>>表单>>jquery随机验证码(2018-08-05)

jquery随机验证码

jquery随机验证码
赞赏支持
立刻微信赞赏支持 关闭

 

XML/HTML Code
  1. <div>  
  2. <input type="text" class="input-code" placeholder="验证码">  
  3. <span class="code" title='点击切换'></span>  
  4. </div>  

 

JavaScript Code
  1. <script>  
  2.   $(function () {  
  3.     $('.code').createCode({  
  4.       len:6  
  5.     });  
  6.   });  
  7.       
  8.   
  9.       
  10.   $('.input-code').blur(function () {  
  11.     if($(this).val().toLowerCase()!==$('.code').children('input').val().toLowerCase()){  
  12.       alert('验证码不正确')  
  13.     }else{  
  14.       alert('验证通过')  
  15.     }  
  16.   })  
  17. </script>  

 


原文地址:http://www.freejs.net/article_biaodan_662.html