jquery submit() 提交失败

Posted jackylee92

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery submit() 提交失败相关的知识,希望对你有一定的参考价值。

今天写一个表单提交

 

 

居然走到$(\'#wechat_form\').submit() 这,但怎么都没有提交这个表单

google 了一下

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.

 

原因是因为我submit的按钮的id 也是submit 和提交submit()方法同名。

解决方案:

  改掉按钮的id 名,就可以了。

iphone 中 button的样式生效 需要去掉原来默认的样式

-webkit-appearance: none;

input 选中自带边框去除

outline:none

 

以上是关于jquery submit() 提交失败的主要内容,如果未能解决你的问题,请参考以下文章

jquer formSerialize(); $('#imagefile_form').serialize(); 表单提交时怎么获得不到值。form.js已引用

jquer和document加载失败 --解决方案

jquery submit和ajax提交表单的区别

停止表单提交,使用 Jquery

JavaScript 学习-42.jQuery 提交表单 submit() 方法

jquery.validate不用submit提交,用js提交的怎么触发验证