0

下面的代码在 IE 中运行良好,但onsuccess(...)在 Chrome 中没有调用方法。有谁知道解决方案?

 $(document).ready(
 function (e) {
     $.support.cors = true;

    $.ajax({
     dataType: "JSON",
     type: "GET",
     crossDomain: true,
     url: "http://localhost:36730/home/GETaaa",
     success: function (data) {
         //console.log(data);
         alert(data);
     },
      Error: function (xhr, error, message) {
        alert(xhr);
     }

 });

 }

)
4

0 回答 0