本文实例为大家分享了JavaScript生成4位随机验证码的具体代码,供大家参考,具体内容如下
代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
<!doctype html> < html > < head > < meta charset = "utf-8" > < title >4位随机验证码的生成</ title > < style > label{ color:aqua; float:left; font-size: 20px; line-height:2em; } #tex{ display:inline-block; width:50px; height: 25px; float:left; text-align: center; font-size:15px; margin-top:10px; } #showyz{ border:3px solid green; color:blue; width:90px; height:40px; text-align:center; float:left; margin-left:15px; line-height: 2.5em; } #hyz{ background-color:burlywood; border:1px solid burlywood; width:50px; height:20px; float: left; margin-left:20px; margin-top: 10px; margin-right:15px; } #btn{ } </ style > </ head > < body > < label for = "tex" >请输入验证码:</ label >< input type = "text" id = "tex" maxlength = "4" autofocus> < div id = "showyz" ></ div > < div id = "hyz" >换一张</ div >< br > < input type = "button" id = "btn" value = "确认" > </ body > < script > //定义个空数组保存62个编码 var codes=[]; //将数字对应的编码保存到codes数组中,数字编码范围【48-57】 for(var i=48;i<=57;i++){ codes.push(i); } //将大写字母对应的编码保存到codes数组中,对应编码范围【65-90】 for(var i=65;i<=90;i++){ codes.push(i); } //将小写字母对应的编码保存到codes数组中,对应编码范围【97-122】 for(var i=97;i<=122;i++){ codes.push(i); } //定义个方法生成62位随机数作为数组角标返回随机的编码,再将其编码转化为对应数字或者字母 function suiji(){ var arr=[];//定义个数组保存4位随机数 for(var i=0;i< 4 ;i++){ var index = Math .floor(Math.random()*(61-0+1)+0);//生成个随机数 var char = String .fromCharCode(codes[index]);//解码 arr.push(char); //存入到数组arr中 } return arr.join("");//将数组转为字符串,以空格分隔,并返回 } var yzm = suiji ();//调用方法,将放回的验证码返回到yzm中 //获取上述元素 var tex = document .getElementById("tex"); var showyz = document .getElementById("showyz"); var hyz = document .getElementById("hyz"); var btn = document .getElementById("btn"); //将验证码写入到id为showyz的div中 showyz.innerHTML = yzm ; //实现换一张验证码功能 hyz.ο nclick = function (){ yzm = suiji (); showyz.innerHTML = yzm ; } //将自己输入的验证码与获取的随机验证码验证 btn.ο nclick = function (){ var textvalue =tex.value;//获取输入的值 if(textvalue.toLowerCase()==yzm.toLowerCase()){//将值都转为小写比较 alert("验证码输入正确!"); yzm = suiji (); showyz.innerHTML = yzm ; tex.value = "" ; } else{ alert("验证码输入错误,请重新输入!"); yzm = suiji (); showyz.innerHTML = yzm ; tex.value = "" ; } } </script> </ html > |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/weixin_42026831/article/details/80042654