document.write('
'); function topLoginFormCheckData(thisForm){ var username = thisForm.username; if(username.value==""){ alert("请输入登录用户名!"); username.focus(); return false; } var userpassword = thisForm.userpassword; if(userpassword.value==""){ alert("请输入登录密码!"); userpassword.focus(); return false; } return true; }