js 检查密码验证函数与检查邮件地址代码
//检查密码是否相同
function isSamePwd(objPwd1, objPwd2, msg)
{
pwd1 = objPwd1.value;
pwd2 = objPwd2.value;
if (pwd1 != pwd2)
{
if (null == msg)
{
alert("密码不相同!");
}
else
{
alert(msg);
}
objPwd2.value = "";
objPwd2.focus();
return false;
}
else
{
return true;
}
}
//检查邮件地址
function isEmail(obj, msg)
{
ch = obj.value;
if((ch.indexOf("@") < 1) || (ch.indexOf(".") < 1) || (ch.indexOf(".") == ch.length - 1))
{
if (null == msg)
{
alert("Email不正确!");
}
else
{
alert(msg);
}
obj.select();
return false;
}
else
{
return true;
}
}
时间: 2024-09-19 08:16:19