0
我有困難打電話jQuery的AJAX調用後功能
完成加載jQuery的回調函數
function to_be_executed_last {
alert("The Call Is Complete");
//some other stuff
}
$("a.jaxable_link").click(function(){
$.post($(this).attr('href'), function(data) {
$('#container').html(data);
//Execute the function to_be_executed_last here AFTER data has finished loading
})
})
我怎樣才能做到這一點? 感謝
10秒。 10.秒。 ;-) *(在我之前,但你的是更完整的。)* – 2010-11-11 22:44:34
這通常稱之爲呼叫完成之前的功能 – 2010-11-11 22:45:09
@RisingSun:在呼叫完成之前它不會調用該功能,已經在上面)。他從「成功」回調中調用它,根據定義*在通話完成時發生。 – 2010-11-11 22:46:53