在$.ajax
请求之后,我无法在浏览器的新标签页中加载其他页面。 原因是什么?
此网址https://example.com/page1.php
中的我的JavaScript代码:
$('#myButton').on("click", function(event) {
event.preventDefault();
$.ajax({
url: "models/data.php",
type: "POST",
data: {...},
dataType: 'json',
context: this,
success: function(data) {
//...
},
error: function (asd, textStatus, errorThrown) {
//...
}
});
});
点击myButton
后,只要ajax请求结束,我就无法在其他标签中加载其他网址。例如https://example.com/page2.php
原因是什么?