X

非同期Ajax通信

オプションにasync: falseを付ける

jQuery.ajax({
type: ‘POST’,
url: request_url,
async: false
}).done(function ( data ) {

});

健巳:
Related Post