ajaxform 不触发
我在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的选择器将匹配一个元素:
...它不是表单或 HTML,因此无法提交,等等。
Your selector will match an element:
… which isn't a form or HTML, so can't be submitted, so etc. etc.