onsubmit该如何使用?为什么我设置后,form表单只执行action而跳过onsubmit的表单检查?
代码如下:<scripttype="javascript"><!--functionchkForm(obj){if(obj.userName.value==""){ale...
代码如下:
<script type="javascript">
<!--
function chkForm(obj){
if(obj.userName.value==""){
alert("请输入你的用户名");
obj.userName.focus();
return false;}
return true;//--></script>
</head>
<body>
<div align="center"><br />
<h2>用户注册</h2><br />
<table>
<tr>
<td>
<form onSubmit="return chkForm(this)" method=post action="regUser.jsp">
请选择用户类型:<input type="radio" name="userType" value="1" checked=checked />普通用户
<input type="radio" name="userType" value="2" />商家<br /><br />
请设定用户名:<input type="text" maxLength=20 name="userName" />
<input type="submit" value="下一步" /></form> 展开
<script type="javascript">
<!--
function chkForm(obj){
if(obj.userName.value==""){
alert("请输入你的用户名");
obj.userName.focus();
return false;}
return true;//--></script>
</head>
<body>
<div align="center"><br />
<h2>用户注册</h2><br />
<table>
<tr>
<td>
<form onSubmit="return chkForm(this)" method=post action="regUser.jsp">
请选择用户类型:<input type="radio" name="userType" value="1" checked=checked />普通用户
<input type="radio" name="userType" value="2" />商家<br /><br />
请设定用户名:<input type="text" maxLength=20 name="userName" />
<input type="submit" value="下一步" /></form> 展开
3个回答
展开全部
onsubmit和action两个都是提交时出发的不过:onsubmit是在表单中的确认按钮被点击时出发的,一般是js函数,而action是在按钮被点击之后出发的,一般是出发前台提交到后台的请求,而引起后台的回应。大致看了一下你的代码,没有试过,建议你onsubmit="chkForm(this)",不要加return,另外检查你的chkFrom()函数有没有语法错误,如果有的话出发也是无效的。粗看了一眼感觉你的函数写得有问题。
追问
去掉return后还是不对啊~~并且根据我查的资料应该是onSubmit="return chkForm(this)" ~~还有就是你觉得我的函数问题出在哪了呢?
追答
看你这段js代码,首先大括号就少了一个,其次:
function chkForm(obj){
if(obj.userName.value==""){
alert("请输入你的用户名");
obj.userName.focus();
return false;}
return true;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询