プラグイン: http://www.malsup.com/jquery/form/#ajaxSubmit
コード:
$( 'form#form' ).live('submit', function( event ){
if( this.arquivo )
{
var options = {
success: showResponse
};
// pass options to ajaxForm
$( '#form' ).ajaxForm( options );
$( '#form' ).ajaxSubmit();
return false;
}
});
function showResponse(responseText, statusText, xhr, $form) {
alert( responseText );
}
フォームを送信することにより、関数 showResponse は呼び出されません。