码迷,mamicode.com
首页 > Web开发 > 详细

js模拟支付宝输入密码

时间:2017-04-11 17:18:50      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:密码   word   utf-8   oct   font   lang   服务   ext   har   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<style>
input{
width:60px;
height:60px;
font-size:40px;
line-height: 60px;
}
</style>
<body>
<input type="password"/>
<input type="password"/>
<input type="password"/>
<input type="password"/>
</body>
<script src="jquery-1.11.3.js"></script>
<script>
$(function(){
var ww=2222;//服务器验证码
$(‘input‘).eq(0).focus();
$(‘input‘).keyup(function(){
if($(this).val().length==1){
$(this).next().focus()
}
})
$(‘input‘).eq($(‘input‘).length-1).keyup(function(){
var valed=‘‘
for(var i=0;i<$(‘input‘).length;i++){
valed=valed+$(‘input‘).eq(i).val()
}
if(Number(valed)==ww){
alert(‘输入正确‘)
}else{
alert(‘输入错误‘)
}
}
)
})
</script>
</html>

js模拟支付宝输入密码

标签:密码   word   utf-8   oct   font   lang   服务   ext   har   

原文地址:http://www.cnblogs.com/zhuyupingit/p/6693807.html

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