Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在经历了很多挫折之后,我了解到上传不适用于 ajax。
我有两个可能的提交按钮。一个是典型的提交,另一个在上传者旁边工作。
我的简单解决方案:在触发 ajax 之前返回,从而以通常的方式刷新页面。
$("#html-upload").live('click',function(){ return; });
然而,这似乎并没有阻止 ajax 被触发。它不应该那么难......所以我想知道我哪里出错了。
您必须返回 false 以防止发生默认操作。
$("#html-upload").live('click',function(){ return false; });