以下のコードは 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);
}
});
}
)