JavaScript使用Math.random()生成简单的验证码
程序员文章站
2022-06-11 18:09:57
第一种:单纯的纯数字验证码
<...
第一种:单纯的纯数字验证码
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>js验证码</title> </head> <body> <div class="yzm" style="width: 20%;height: 300px;text-align: center;background-color: pink;line-height: 200px;"></div> </body> </html> <script> window.onload = function () { var yzm=document.queryselector(".yzm"); //页面一加载完成就生成随机数调用rand() yzm.innerhtml=rand(5); //点击切换随机码 yzm.onclick=function() { var num = rand(5); this.innerhtml = num; }; //生成随机码 function rand(number){ //用来存储产生的随机数 var num=""; for(var i=0;i<number;i++){ num+=math.floor(math.random()*10) } return num; } } </script>
第二种:输入的验证码与生成的验证码进行校验(数字与字母相结合)
<html> <head> <meta charset="utf-8"> <title>验证码</title> <style type="text/css"> #code { font-family:arial; font-style:italic; font-weight:bold; border:0; letter-spacing:2px; color:blue; } </style> </head> <body> <div> <input type = "text" id = "input"/> <input type = "button" id="code" onclick="createcode()"/> <input type = "button" value = "验证" onclick = "validate()"/> </div> </body> </html> <script> var code ; //在全局定义验证码 var number = 5;//验证码生成的个数 var checkcode = document.getelementbyid("code"); //产生验证码(页面一加载就生成) window.onload = function (){ createcode(); }; //产生验证码(输入错误的时候刷新验证码,函数调用) function createcode(){ code = ""; var codelength = number;//验证码的长度 // var checkcode = document.getelementbyid("code"); var random = [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', 's','t','u','v','w','x','y','z','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r', 's','t','u','v','w','x','y','z'];//随机数 for(var i = 0; i < codelength; i++) {//循环操作 var index = math.floor(math.random()*random.length);//取得随机数的索引(random.length) code += random[index];//根据索引取得随机数加到code上 } checkcode.value = code;//把code值赋给验证码 } //校验验证码 function validate(){ var inputcode = document.getelementbyid("input").value.touppercase(); //取得输入的验证码并转化为大写 if(inputcode.length <= 0) { //若输入的验证码长度为0 alert("请输入验证码!"); //则弹出请输入验证码 } else if(inputcode != code.touppercase() ) { //将随机产生的验证码转化为大写,若输入的验证码与产生的验证码不一致时 alert("验证码输入错误!@_@"); //则弹出验证码输入错误 createcode();//刷新验证码 document.getelementbyid("input").value = "";//清空文本框 } else { //输入正确时 alert("正确^-^"); //弹出^-^ } } </script>
若有不足请多多指教!希望给您带来帮助!
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接