onclick事件里面添加return false;
onclick="cklogin();return false;"
这样就要在else里面添加表单提交处理语句了,比如document.FORM_NAME.submit();(这里假设表单是name="FORM_NAME")
onclick="return cklogin()"
function cklogin() {
var username = document.getElementById('username');
var passwd=document.getElementById('password');
if(username.value==""||passwd.value==""){
alert("用户名或者密码不能为空");
return false
}else{
//document.location="../page/adminindex.php";
return true
}
}
你这个 cklogin 相当于验证一个表单时候提交
但是这个按钮是 提交按钮 。cklogin函数 没有return false ;所以会继续执行表单提交操作
加到FORM里,如: