0
我有一個應用程序使用$ .ajax從ColdFusion組件(本地)獲取json。這在FF和IE8和IE9上正常工作,但是當我在IE7中加載頁面時,出現錯誤。當我輸出textStatus和errorThrown時,錯誤是parseerror [object Error]。任何想法,讚賞。由於
$.ajax({
type: "POST",
url: "/SavedLists.cfc?wsdl&method=getListsAndItems&returnformat=json&queryformat=column",
dataType: "json",
success: PopulateSharedLists,
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert("Error Shared Lists- " + textStatus + " " +errorThrown);
this;
}
});
額外的`this`是什麼? – Dutchie432 2011-02-02 15:01:33