2009-10-16 30 views

回答

1

你要尋找的完成()回調在這種情況下,成功後發生:

// A function to be called when the request finishes 
// (after success and error callbacks are executed). 
// The function gets passed two arguments: The 
// XMLHttpRequest object and a string describing the 
// type of success of the request. This is an Ajax Event. 
complete: function (XMLHttpRequest, textStatus) { 
    this; // the options for this ajax request 
}