2个回答
展开全部
<html>
<head>
<script type="text/javascript">
function checkPass(){
var pwd1=document.getElementById("p1").value;
var pwd2=document.getElementById("p2").value;
if(pwd1!=pwd2){
document.getElementById("errorpwd").style.display = "block";
return false;
}
}
</script>
</head>
<boby>
<input type="password" id="p1"><br>
重复密码:<input type="password" id="p2" onblur="return checkPass();">
<span id="errorpwd" style="display:none;">两次输入密码不一致</span>
</body>
</html>
<head>
<script type="text/javascript">
function checkPass(){
var pwd1=document.getElementById("p1").value;
var pwd2=document.getElementById("p2").value;
if(pwd1!=pwd2){
document.getElementById("errorpwd").style.display = "block";
return false;
}
}
</script>
</head>
<boby>
<input type="password" id="p1"><br>
重复密码:<input type="password" id="p2" onblur="return checkPass();">
<span id="errorpwd" style="display:none;">两次输入密码不一致</span>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<script type="text/javascript">
function checkPass(p1,p2){
p1Value=document.getElementById(p1).value;
p2Value=document.getElementById(p2).value;
if(p1Value!=p2Value){
document.getElementById('hint').innerHTML='二次密码不一样,请重新输入。';
document.getElementById(p1).value='';
document.getElementById(p2).value='';
}
}
</script>
密码:<input type="password" name="p1" id="p1"><br>
重复密码:<input type="password" name="p2" id="p2" onChange="checkPass('p1','p2');"><div id="hint"></div>
function checkPass(p1,p2){
p1Value=document.getElementById(p1).value;
p2Value=document.getElementById(p2).value;
if(p1Value!=p2Value){
document.getElementById('hint').innerHTML='二次密码不一样,请重新输入。';
document.getElementById(p1).value='';
document.getElementById(p2).value='';
}
}
</script>
密码:<input type="password" name="p1" id="p1"><br>
重复密码:<input type="password" name="p2" id="p2" onChange="checkPass('p1','p2');"><div id="hint"></div>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询