相关代码 |
|
function checkdata(theform) { if (theform.oldpassword.value == "") { alert(""); theform.oldpassword.focus(); return false; } if (theform.password.value != theform.repassword.value) { alert(""); theform.password.focus(); return false; } else { theform.Submit.disabled = true; return true; } } (*)
相关资源 |
|