首頁  >  問答  >  主體

javascript - 求救! IE8中Jquery的$.ajax出現錯誤?

在其他瀏覽器中沒有問題,但是在IE8中就會出現問題,直接跳到$.ajax的error,alert回傳的readyState為0

    $.ajax({
            type: "POST",
            async: false,
            contentType: "application/x-www-form-urlencoded;charset=UTF-8",
            xhrFields: {
                withCredentials: true
            },
            url:url,
            data:data,
            success:function (response) {
                arr = response.Data.ListData;
            },
            error:function (XMLHttpRequest, textStatus, errorThrown) {
                alert(XMLHttpRequest.readyState);
            }
        });

readyState:

#
typechotypecho2707 天前755

全部回覆(1)我來回復

  • ringa_lee

    ringa_lee2017-06-14 10:55:54

    有可能是你success的回呼函數中報錯了。

    回覆
    0
  • 取消回覆