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()
デモ:フィドル