为什么我这个里面的 JSP的 onsubmit函数没有被执行,没有填写也没有,也不会弹出窗口。。
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/l...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>用户名</title>
</head>
<body>
<form method="post" action="login.php" >
<input type="text" name="textUserName" size="20">
<input type="password" name="textPws" size="20">
<input type="submit" value="登陆" name="B1" style=" font-size:11pt; font-family:宋体"
onclick="return form_onsubmit(this.form)">
<input type="reset" value="重置" name="B2" style="font-size:11pt; font-family:宋体" >
<script language="javascript">
function form_onsubmit(obj)
{
if(obj.textUserName.value=="")
{ alert("请输入用户名");
return false;
}
if(obj.textPwd.value=="")
{
alert("请输入密码");
return false;
}
return true;
}
</script>
</form>
</body>
</html> 展开
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>用户名</title>
</head>
<body>
<form method="post" action="login.php" >
<input type="text" name="textUserName" size="20">
<input type="password" name="textPws" size="20">
<input type="submit" value="登陆" name="B1" style=" font-size:11pt; font-family:宋体"
onclick="return form_onsubmit(this.form)">
<input type="reset" value="重置" name="B2" style="font-size:11pt; font-family:宋体" >
<script language="javascript">
function form_onsubmit(obj)
{
if(obj.textUserName.value=="")
{ alert("请输入用户名");
return false;
}
if(obj.textPwd.value=="")
{
alert("请输入密码");
return false;
}
return true;
}
</script>
</form>
</body>
</html> 展开
2个回答
展开全部
将按钮的onclick事件去掉,改为:在form中加上onsubmit事件
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询