怎么判断不行,测试没反映。代码不起作用。。。FORM action="default.asp" method="post" name="form1" onSubmit="return checkLogin(this)">
<tr>
<td align="center">
<font color="#FF0000">-- 请输入用户名密码验证码登录 --</font><br> <br>
<font color="#666666">用 户 名:</font>
<input name="username" type="text" size="15" maxlength="50"> <br>
<font color="#666666"> 登录密码:</font> <input name="password" type="password" size="15" maxlength="50"><br>
<font color="#666666">验 证 码:</font> <input name="safecode" type="text" size="9" ><img src="getcode/getcode.asp" height="10">
<script>
function checkLogin(oForm)
{
if(oForm.username.value.isEmpty())
{
alert("请输入用户名!");return false;
}
else if(oForm.password.value.isEmpty())
{
alert("请输入密码!");return false;
}
else if(oForm.safecode.value.isEmpty())
{
alert("请输入验证码!");return false;
}
else
{
return true;
}
}
</script>