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.
Safari と Chrome で ajaxForm リクエストが正しく機能しません。php ファイルから応答を取得する代わりに、新しいページとして開きます。(FF、IE、Opera で正常に動作します):
$('#my_form').ajaxForm({ success: finished }); function finished(responseText, statusText) { ... }
ご協力いただきありがとうございます!
同じプラグインでこの例を見つけることができます:
$(document).ready(function() { $('#myForm').bind('submit', function() { $(this).ajaxSubmit({ target: '#output' }); return false; // <-- important! }); });
onSubmit イベントの同じフォームでこれを行うことができます。
<form ... onSubmit="return false;">