我試圖用jQuery 1.4.2來捕捉Ajax超時錯誤,但沒有找到任何教程工作。在Firebug中,超時錯誤觸發。我看到uncaught exception: [object Object]
。請幫我處理Ajax超時。這裏是我的JS代碼:jQuery句柄Ajax超時?
$.ajax({
type:"POST",
url:"/data/add/",
data:
{
"date":$("input#date").val();
},
dataType:"json",
timeout:2000,
success: function(response) {
},
error: function() {
alert('Server error');
}
});
您的數據選擇一個錯誤的分號。請參閱下面的答案。 – 2010-08-22 03:35:03