码迷,mamicode.com
首页 > 编程语言 > 详细

Javascript随机验证码

时间:2017-08-21 14:51:03      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:window   oct   ++   asc   title   innerhtml   java   tle   func   

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>随机验证码</title>
</head>
<body>
<span id="msg"></span>
<input type="button" value="刷新" onclick="show()">
<script>
function validateCode(n){
var s="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
var ret="";
for(var i=0;i<n;i++){
var index=Math.floor(Math.random()*62);
ret+= s.charAt(index);
// alert(Math.floor(Math.random()*62));
}
return ret;
}
function show(){
document.getElementById("msg").innerHTML=validateCode(5);
}
function renovates(){
document.location.reload();
}
window.onload=show;
</script>
</body>
</html>

Javascript随机验证码

标签:window   oct   ++   asc   title   innerhtml   java   tle   func   

原文地址:http://www.cnblogs.com/weiluguo/p/7404077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!