jquery实时提交的问题

发布于 2024-10-24 20:41:07 字数 453 浏览 0 评论 0原文

我试图将提交功能绑定到我的页面中的多个表单,但问题是他们仍然不断提交表单!

我尝试了这些:

$(".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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

狼性发作 2024-10-31 20:41:07

来自文档

不支持使用 DOM 遍历方法来查找要发送到 .live() 的元素。相反,.live() 方法应始终在选择器之后直接调用,如上面的示例所示。

因此,您需要一个选择器来选择这些表单,使用 parents() 不起作用。

From the documentation:

DOM traversal methods are not supported for finding elements to send to .live(). Rather, the .live() method should always be called directly after a selector, as in the example above.

So you need a selector that selects those forms, using parents() won't work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文