. a j a x ( ) . d o n e ( ) 从 J Q u e r y 1.8 , .ajax().done() 从JQuery 1.8, .ajax().done()从JQuery1.8,.ajax()的 success() 被替换为 done() ,error() 被替换为 fail() ,complete() 被替换为 always() 。
function test(){
$.ajax({
type: “post”,
url: “/index.html”,
dataType: “json”,
}).done(function(data){ // 相当于 success console.log(data)if(data.result){result = data.result; }
}).fail(function(jqXHR, textStatus, errorThrown){ // 相当于 error}).always(function( jqXHR, textStatus ){ // 相当于 complete});
}