Jquery submit()无法提交问题

代码点击注册按钮时无法提交表单,名称冲突可能会导致混乱的失败,接下来为大家介绍下解决方法,感兴趣的朋友可以了解下

复制代码 代码如下:


<form action="register.php" method="post">
<div>
<label>用户名:</label>
<input type="text" /><div></div>
</div>
<div>
<label>密码:</label>
<input type="text" /><div></div>
</div>
<div>
<label>邮箱:</label>
<input type="text" /><div></div>
</div>
<div>
<input type="button" value="注册" />改为<input type="button" value="注册" />
</div>
<div></div>
</form>
$("#submit").click(function() {
$("form").submit();
});


上述代码点击注册按钮时无法提交表单

原因
Additional Notes:
Forms and their child elements should not use input names or ids that conflict with properties of a form, such as submit, length, or method. Name conflicts can cause confusing failures. For a complete list of rules and to check your markup for these problems, see DOMLint.

其他注意事项
表单和其子元素不宜用一个表单的属性的属性作为name或id的名称,如submit, length, or method,是、会产生冲突。名称冲突可能会导致混乱的失败。对于一个完整的规则列表,并检查这些问题标记,看DOMLint。
所以将注册按钮的id改为“register”就OK了

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdgfsf.html