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.
我有简单的形式。我更改了表单提交 - 像这样。
$("#formID").submit(function () { do something; return false; });
在此之后如何将提交重置为其原始状态,因为如果数据有效,我需要将其发布回另一个 url。
jsFiddle 演示
要删除提交事件,您可以使用unbind:
unbind
$('#formID').unbind("submit");
这将删除定义的提交事件和回调。
在常规提交代码中使用隐藏按钮。
从上面的代码返回后,点击隐藏按钮