ajaxform 不触发

发布于 2024-09-08 21:32:57 字数 370 浏览 5 评论 0原文

我在使用 ajaxform 时遇到了一些麻烦 - 它没有看到火。在下面的 ajaxForm 代码中,警报永远不会显示。

我通过书签添加了一个 iframe (my_frame)。这显示得很好。我想在提交表单时做一些事情。 getScript 成功(显示表单已加载警报)。但该函数永远不会被触发。我可能会缺少什么?

jQuery.getScript("http://localhost:81/p/a2b/jquery.form.js", function () {
 alert ("form loaded");

jQuery('my_frame#my_cart').ajaxForm(function() { alert ('yo!'); });
}); 

I am having some trouble with ajaxform - it does not see to fire. in the ajaxForm code below, the alert never shows up.

I have added an iframe (my_frame) via a bookmarklet. That shows up fine. I want to do some stuff when the form is submitted. getScript succeeds (the form loaded alert is displayed). But the function never gets triggered. What might I be missing?

jQuery.getScript("http://localhost:81/p/a2b/jquery.form.js", function () {
 alert ("form loaded");

jQuery('my_frame#my_cart').ajaxForm(function() { alert ('yo!'); });
}); 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

妄司 2024-09-15 21:32:57

您的选择器将匹配一个元素:

<my_frame id="my_cart">

...它不是表单或 HTML,因此无法提交,等等。

Your selector will match an element:

<my_frame id="my_cart">

… which isn't a form or HTML, so can't be submitted, so etc. etc.

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