。語法如下:使用JQuery處理錯誤當我使用JQuery <a href="http://api.jquery.com/jquery.when/" rel="nofollow">when</a>時
$.when(
// Get the HTML
$.get("/feature/", function(html) {
globalStore.html = html;
}),
// Get the CSS
$.get("/assets/feature.css", function(css) {
globalStore.css = css;
}),
// Get the JS
$.getScript("/assets/feature.js")
).then(function() {
// Add CSS to page
$("<style />").html(globalStore.css).appendTo("head");
// Add HTML to page
$("body").append(globalStore.html);
});
我的問題
- 我該怎麼辦錯誤處理時異常調用服務器的測試結果(故障情況)或錯誤處理任何其他情況下的一個?
- 因爲我在這裏發出Ajax請求,所以我如何定義Ajax請求的超時時間?
你檢查過嗎? – 2014-09-02 08:03:16