我試圖讓這段代碼正常工作,但它給了我一個錯誤。它似乎並沒有執行。jQuery.post給出錯誤
jQuery.post("getResults.php", {id:id} , function(data)
{
jQuery("select#kDate").removeAttr("disabled");
jQuery("select#kDate").html(data);
})
.success(function() { alert("second success"); })
.error(function() { alert("error"); })
.complete(function() { alert("complete"); });
});
任何幫助,將不勝感激。
你並不需要2層成功的功能.. –
我發現這裏的代碼,並添加它來嘗試和工作發生了什麼事情在我的代碼。 – bobthemac
通過在錯誤函數中記錄傳遞的參數來查找有關錯誤的更多信息。另外:Firebug說什麼? – madflow