Jquery submit()无法提交问题_jquery
程序员文章站
2022-04-27 13:21:49
...
复制代码 代码如下:
$("#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了
推荐阅读
-
解决3.01版的jquery.form.js中文乱码问题的解决方法_jquery
-
如何书写高质量jQuery代码(使用jquery性能问题)
-
jquery-file-upload 的php mysql插入有关问题
-
jQuery Validate 无法验证 chosen-select元素的解决方法
-
jquery 跨域访问问题解决方法(笔记)_jquery
-
jquery提交form表单时禁止重复提交的方法
-
巧用jquery解决下拉菜单被Div遮挡的相关问题
-
jquery select选中的一个小问题_jquery
-
javascript - jQuery给动态添加的元素绑定事件的问题?
-
【手机上传】jQuery传递数据同时上传文件到php后台接受不到的问题