ajax表单提交不起作用
我正在使用 jquery.form.js (版本:2.84),在下面的代码中,我发现它在 $('imageform').ajaxSubmit 之前卡住了。如果我删除 PreventDefault,表单将像往常一样提交,并且页面被刷新。当 PreventDefault 存在时,我确实看到了 loader.gif,但在服务器端我看不到任何数据,并且警报也从未被触发。
google.maps.event.addDomListener($('photoimg'), 'change', function(e){
e.preventDefault(); // <-- important
$("preview").innerHTML = ("<img src=\"loader.gif\" alt=\"Uploading....\"></img>");
$('imageform').ajaxSubmit({
target: 'preview'
});
alert('after submit');
});
我还使用如下函数,这就是我使用 $(' imageform') 而不是 $('#imageform')...
function $(element) {
return document.getElementById(element);
}
I am using jquery.form.js (version: 2.84) and in the below code, I see that it's getting stuck just before $('imageform').ajaxSubmit.. If I remove preventDefault, the form gets submitted as usual and the page gets refreshed. When preventDefault is present, I do see the loader.gif, but in the server side I do not see any data and also the alert is never fired..
google.maps.event.addDomListener($('photoimg'), 'change', function(e){
e.preventDefault(); // <-- important
$("preview").innerHTML = ("<img src=\"loader.gif\" alt=\"Uploading....\"></img>");
$('imageform').ajaxSubmit({
target: 'preview'
});
alert('after submit');
});
I am also using a function as below and that's why I am using $('imageform') and not $('#imageform')...
function $(element) {
return document.getElementById(element);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
否,因为您已使用
getElementById
函数覆盖了$
。将在需要 jQuery 对象的 DOM 元素上执行 ajaxSubmit。您需要删除
$
或使用:$("#foo")
与document.getElementById("foo")< /代码>。
jQuery 函数返回一个 jQuery 对象,其中包含所有 jQuery 函数,例如
.bind
和.ajaxSubmit
。document.getElementById
,另一方面,返回一个裸DOM元素,它不具有任何jQuery功能。jQuery 对象就像一个 DOM 元素数组,因此:
No, because you've overwritten
$
with thegetElementById
function.will execute
ajaxSubmit
on the DOM element, where you need a jQuery object. You'd either need to remove your$
or use:$("#foo")
is not the same asdocument.getElementById("foo")
.The jQuery function returns a jQuery object which has all the jQuery functions like
.bind
and.ajaxSubmit
present.document.getElementById
, on the other hand, returns a naked DOM element which does not have any functions of jQuery.The jQuery object is like an array of DOM elements, so:
您的
$
函数正在破坏 jQuery 中同一变量的含义。您可以在 jQuery 中搞乱许多兼容性内容,或者采取简单的路线:将您的$
函数重命名为其他名称,或者直接调用document.getElementById()
因为你的函数只是让你免于键入该调用。或者,更好的是,使用 jQuery 来处理该调用。Your
$
function is clobbering the meaning of that same variable for jQuery. You could mess around with lots of compatibility stuff in jQuery, or take the simple route: rename your$
function to something else, or just calldocument.getElementById()
straight out since your function is only saving you from typing out that call. Or, better yet, use jQuery to take care of that call.