jquery实时提交的问题
我试图将提交功能绑定到我的页面中的多个表单,但问题是他们仍然不断提交表单!
我尝试了这些:
$(".toggle-form-submit").parents("form").live("submit", function(e){
var myForm = $(this);
console.log(myForm);
e.preventDefault();
return false;
});
提交表格
live("submit"...
livequery("submit"...
按预期工作
submit(function()...
如果是实时甚至是实时查询,为什么它不起作用?
I am trying to bind the submit function to a number of forms in my page, but the problem is they still keep submitting the form!
I tried these:
$(".toggle-form-submit").parents("form").live("submit", function(e){
var myForm = $(this);
console.log(myForm);
e.preventDefault();
return false;
});
SUBMITS FORM
live("submit"...
livequery("submit"...
WORKS AS INTENDED
submit(function()...
why doesn't it work if it is live or even livequery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自文档:
因此,您需要一个选择器来选择这些表单,使用
parents()
不起作用。From the documentation:
So you need a selector that selects those forms, using
parents()
won't work.