为啥要把机子整那么累!
若emp_pass和re_Password都用onblur事件的话,
分别点击俩个密码框,它们都会抢着聚焦(造死循环)
修改为试试。
var emp_pass=document.getElementById("emp_pass").value;
var Erremp_pass=document.getElementById("Erremp_pass");
//document.getElementById("emp_pass").focus();
//document.getElementById("re_Password").focus();
//document.getElementById("re_Password").select();
...
if(re_Password!=document.getElementById("emp_pass").value)
...
您好!很高兴为您答疑!
把foucs()去掉,emp_pass和re_Password都用onblur事件的话,分别点击俩个密码框,它们都会抢着聚焦。
您可以在火狐社区了解更多内容。希望我的回答对您有所帮助,如有疑问,欢迎继续在本平台咨询。