引用jquery库和jquery.code.js
1 2 | < script src = "js/jquery.code.js" ></ script > |
html
1 2 | < input type = "text" placeholder = "验证码" > < span title = '点击切换' ></ span > |
js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | $( function () { // 自定义验证码个数 $( '.code' ).createCode({ len: 6 }); }); // 前面输入框失去焦点验证 $( '.input-code' ).blur( function () { if ($( this ).val().toLowerCase() != $( '.code' ).children( 'input' ).val().toLowerCase()) { alert( '验证码不正确' ) } else { alert( '验证通过' ) } }) |
特别申明:
本站所有资源都是由网友投稿发布,或转载各大下载站,请自行检测软件的完整性!
本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!
如有侵权请联系我们删除下架,联系方式:lei1294551502@163.com