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

How to use js to confirm the password again

一个新手
Release: 2017-09-08 13:37:00
Original
3846 people have browsed it

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();
     }
 }
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template