16
IE8/Chrome,FF工作正常,但Internet Explorer 7讓我頭疼。Internet Explorer 7中的JSON問題
我試圖讓數字結果爲實際的形式
$(".checklist label").click(function() {
checkResults();
});
function checkResults() {
var str = $("form").serializeArray();
$.ajax({
type: "POST",
url: "/data.asmx/GetTotal",
cache: false,
contentType: "application/json; charset=utf-8",
data: JSON.stringify({ data: str }),
dataType: "json",
success: handleHtml,
error: ajaxFailed
});
}
function handleHtml(msg) {
$("#result").text(msg.d);
}
function ajaxFailed(xmlRequest) {
}
我做了什麼不對的IE7不會工作?
謝謝
順便說一句,你不必使用js在stringify上,作爲$ .ajax中的數據參數,您可以使用整個對象。 – MarrLiss 2011-02-10 11:01:25