Home > Article > Web Front-end > How to use js to confirm the password again
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!