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.
如何从表单元素中删除 ajaxForm 以便采取默认操作?
$('form').off('ajaxForm')
或者
$('form').unbind('ajaxForm')
不工作
初始化是$('form').ajaxForm({...});
$('form').ajaxForm({...});
尝试使用ajaxFormUnbind插件提供的 , 方法
ajaxFormUnbind
$('form').ajaxFormUnbind()
演示:小提琴