我有一個AJAX調用JsonAction錯誤:對象不支持屬性或方法「的indexOf」
$.ajax({
url: "/Cancel/",
context: document.body,
success: function (result) {
if (result.indexOf("Authorize") != -1) //indexOf not supported?
window.location.replace("/Account/LogOn");
//...
};
這是爲什麼發生?
還有,我也試圖去這樣的:
var responce = result;
if (responce.indexOf("Authorize") != -1)
和
var responce = $(result);
if (responce.text().indexOf("Authorize") != -1)
但都是一樣的。 Ned幫助如何使.index工作。
致電退貨?將alert(result)'作爲成功處理程序的第一行,並查看實際結果。 – jfriend00