我的 ajax 加载程序冻结浏览器并引发 JavaScript 错误(停止脚本或继续)。我尝试将异步更改为真/假,但没有运气。我正在创建成功的 div 表。
$.ajax({
type: "POST",
url: "getschedules",
data: '{"StartingDate": "' + startdate + '", "EndingDate": "' + enddate + '"}',
contentType: "application/json; charset=utf-8",
async: true,
dataType: "json"
}).done(function (response) {
adc.createTable(response);
}).fail(function () {
})
}