我有一個簡單的$ .ajax請求,我試圖在ASP.Net MVC應用程序中獲取一些HTML內容。在Firefox上使用Jquery + ASP.Net MVC獲取parserror
// Load the claim table
function GetClaimTable() {
$.ajax({
type: "GET",
url: "claimtable",
data: {},
datafilter: null,
dataType:'text',
success: function(msg){
alert(msg);
$("#claimTable").html(msg.responseText);
},
error: function(msg, sdf, sdd) {
alert(sdf);
alert(sdd);
}
});
但我得到一個parseerror代替。該調用是成功的,因爲我在firefox中看到了200 OK,並且錯誤包含XmlHttpRequest對象,該對象在responseText屬性中具有正確的數據。
該代碼在IE中運行良好,但在Firefox中失敗。 url聲明表是一個簡單的MVC Action。
我在這裏讀到jQuery/ASP MVC -- parsererror in "$.ajax" calls,這是由於在jquery 1.3.2中解決了一個錯字。但我有1.3.2,我得到這個錯誤。
任何幫助?
您可以發佈全解析錯誤FF給你 – 2009-09-19 18:52:17
沒有充分parsererror。這就是全部。這是一個字符串:「parsererror」 – 2009-09-19 19:14:45