输入两次密码不一致时,为什么弹出两次输入的密码一致_html/css_WEB-ITnose
程序员文章站
2022-04-01 19:17:05
...
回复讨论(解决方案)
function checkPasswords() {
var pass1 = document.getElementsByName("password1")[0];
var pass2 =document.getElementsByName("password2")[0];
if (pass1.value!=pass2.value)
{
alert("两次输入的密码不一致");
}
else
{
alert("两次输入的密码一致");
}
}
上一篇: html5 实现如何将两个矩形相互叠加
下一篇: css按钮渐变色