Jquery只在ie8中工作,所有其他浏览器都能正常工作

时间:2013-01-18 21:17:17

标签: javascript jquery ajax

这里我尝试使用Ajax加载一些数据。 在IE 9和所有其他浏览器工作正常。 但是在IE8中,总是会抓住它。我不知道它为什么总会引发异常。

这是我的代码。

var SyncResponseText = "";

var WrapedRequestObject = JSON.stringify(RstClientServerDTO);


try {
    SyncResponseText = eval($.ajax({
        type: "POST",
        contentType: 'application/x-www-form-urlencoded; charset=UTF-8',
        url: "../../ApplicationServiceHandler/ClientRequestHandler.ashx",
        data: WrapedRequestObject,
        timeout: 240000,
        dataType: "json",
        async: IsAssync,
        success: function (msg) {

//                if (msg == false) {
//                    window.location.href = window.location.href;
//                }
//                else {
                SuccessCallBack(msg);
//                }

        }, // function (data) { alert('success') },
        error: function (xhr, textstatus, error) { ErrorCallBack(xhr, textstatus,         error) } // { alert('error') }
    }).responseText);
}
catch (Exception) {
    SyncResponseText = Exception.get_Message();
}

return SyncResponseText;

1 个答案:

答案 0 :(得分:3)

请勿使用eval。你的代码部分毫无意义。