还是一个JSP问题
有两种登陆.一是管理员 一是普通员工
两个模块里都有管理员 但我现在要实现在普通员工页面里不能修改管理员的密码
我的这个代码该怎么改呢?
<script language= "JavaScript ">
function RgTest() {
if(document.user.userId.value== " "{
window.alert( "请输入Id ");
document.user.userId.focus();
return false;
}
if(document.user.passwd.value== " ") {
window.alert( "密码不能为空 ");
document.user.passwd.focus();
return false;
}
if(document.user.newpasswd.value== " "){
window.alert( "填写新密码 ");
document.user.newpasswd.focus();
return false;
}
if(document.user.newpasswd.value!=document.user.repasswd.value){
window.alert( "无效 ");
document.user.newpasswd.value= " ";
document.user.repasswd.value= " ";
document.user.newpasswd.focus();
return false;
}
return true;
}
</script>
&nb