我有一个简单的页面
$.ajax({
url: "abc.php",
type: "POST",
async: false,
dataType: 'json',
data: { 'json': JSON.stringify(match) , 'source': source} ,
success: function(response){
alert("Alert 1");
}
});
alert("hello");
location.reload();
它总是提醒"hello"
,我也尝试过,fail:
但找不到正确的结果。请在这方面帮助我