Heim  >  Fragen und Antworten  >  Hauptteil

javascript - Ajax-Anfrage schlägt unter IE9 fehl?

1. Anforderung zum Ausführen des Fehlers direkt unter ie9

2.$.ajax({

    url: apiServiceBaseUri + 'token',
    type: "post",
    data: data,
    dataType: 'json',
    success: function (response) {
        loginSucc(response);
    },
    error: function(response) {
        var res = JSON.parse(response.responseText);
        $(".hint").show().html(res.error_description);
    }
});
PHP中文网PHP中文网2710 Tage vor413

Antworte allen(1)Ich werde antworten

  • 伊谢尔伦

    伊谢尔伦2017-05-19 10:20:38

    看看控制台下,请求有没有发送出去呢?以及有什么错误提示呢。url输入的正确否?

    Antwort
    0
  • StornierenAntwort