Home  >  Article  >  Web Front-end  >  How to use js to confirm the password again

How to use js to confirm the password again

一个新手
一个新手Original
2017-09-08 13:37:003750browse

document.getElementById("checkPwd").addEventListener("focus", checkPwd);
document.getElementById("checkPwd").addEventListener("blur", checkPwd);function checkPwd(){
     if(!$("#checkPwd").val()){
         $("#checkPwdMsg").text("请输入确认密码").show();
     } else if($("#pwd").val() != $("#checkPwd").val()){
         $("#checkPwdMsg").text("两次密码输入不一致").show();
     } else {
         $("#checkPwdMsg").text("").show();
     }
 }

The above is the detailed content of How to use js to confirm the password again. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn