1.引用的文件
1 2 3 | < link rel = "stylesheet" href = "./jquery.idcode.css" /> < script src = "./jquery.idcode.js" ></ script > |
2.HTML部分
1 2 3 4 5 | < input type = "text" id = "Txtidcode" class = "txtVerification" /> < span id = "idcode" ></ span > < div > < button type = "button" id = "btns" >验证</ button > </ div > |
3.JS部分
1 2 3 4 5 6 | $.idcode.setCode(); $( "#btns" ).click( function () { var IsBy = $.idcode.validateCode(); alert(IsBy); console.log(IsBy); }); |
4.然后要到它的JS文件去指定一个输入验证码框的
1 2 3 4 5 6 7 8 9 | var settings = { e: 'idcode' , codeType: { name: 'follow' , len: 4 }, codeTip: 'refresh?' , inputID: 'Txtidcode' //这个就是你页面输入验证码的文本框ID }; |
5.最后是JS调用:
1 | var IsBy = $.idcode.validateCode(); |
返回的是true或false。这样就可以验证
6.jquery.idcode.js中的19行调整的是验证码的长度;47行可以修改区分大小写
7.插件是网上找的稍微修改了下。亲测可用
特别申明:
本站所有资源都是由网友投稿发布,或转载各大下载站,请自行检测软件的完整性!
本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!
如有侵权请联系我们删除下架,联系方式:lei1294551502@163.com