[求助]注册页面的俩次密码输入相同验证
急救,谢谢
<form ..... name=form1>
<input name=pass1 type=password>
<input name=pass2 type=password>
<input name=pass1 type=password>
<input type="image" name="bnt_next" onclick="return checkinput()" language="javascript" id="bnt_next" src="img/next.gif" alt="下一步" border="0" />
</form>
<SCRIPT language=JavaScript>
<!--
function checkinput()
{
if !(form1.pass1.value ==form1.pass2.value)
{
alert("密码二次输入不同!");
form1.pass1.focus();
return false;
}
else
{
form1.submit();
return true;
}
}
</SCRIPT>
//注意:本程序没有测试过!
[此贴子已经被作者于2006-10-16 13:09:07编辑过]