最近的項目用了到AJAX同步。這個同步的意思是當JS代碼加載到當前AJAX的時候會把頁面裏全部的代碼中止加載,頁面出去假死狀態,當這個AJAX執行完畢後纔會繼續運行其餘代碼頁面假死狀態解除。 而異步則這個AJAX代碼運行中的時候其餘代碼同樣能夠運行。 jquery的async:false,這個屬性 默認是true:異步,false:同步。html
$.ajax({jquery
type: "post",ajax
url: "path",異步
cache:false,async
async:false,post
dataType: ($.browser.msie) ? "text" : "xml",this
success: function(xmlobj){url
}線程
});orm
有了這個屬性能夠相對的減小代碼運行書序問題,可是若是用的太多,頁面假死次數太多。這樣反而致使用戶體驗不佳~!
$.Ajax()中 async 和success的官方的解釋:
async Boolean Default: true
By default, all requests are sent asynchronous (e.g. this is set to true by default). If you need synchronous requests, set this option to false. Note that synchronous requests may temporarily lock the browser, disabling any actions while the request is active.
success Function
A function to be called if the request succeeds. The function gets passed two arguments: The data returned from the server, formatted according to the 'dataType' parameter, and a string describing the status. This is an Ajax Event.
在這裏,async默認的設置值爲true,這種狀況爲異步方式,就是說當ajax發送請求後,在等待server端返回的這個過程當中,前臺會繼續 執行ajax塊後面的腳本,直到server端返回正確的結果纔會去執行success,也就是說這時候執行的是兩個線程,ajax塊發出請求後一個線程 和ajax塊後面的腳本(另外一個線程)例:
$.ajax({
type:"POST",
url:"Venue.aspx?act=init",
dataType:"html",
success:function(result){ //function1()
f1();
f2();
}
failure:function (result) {
alert('Failed');
},
}
function2();
在上例中,當ajax塊發出請求後,他將停留function1(),等待server端的返回,但同時(在這個等待過程當中),前臺會去執行function2(),也就是說,在這個時候出現兩個線程,咱們這裏暫且說爲function1() 和function2()。
當把asyn設爲false時,這時ajax的請求時同步的,也就是說,這個時候ajax塊發出請求後,他會等待在function1()這個地方,不會去執行function2(),知道function1()部分執行完畢。