$.ajax({ url: '../app/source/addPassenger', data: { passenger_resource: JSON.stringify(passenger_resource), }, dataType: 'json', type: 'POST', success: function (data) { alert("添加成功!") window.location.href = "select.html" }, error: function () { alert("提交失败"); } })
3 回答
慕盖茨4494581
TA贡献1850条经验 获得超11个赞
理论上是不会存在问题的,检查下,你的window.alert这个函数,是不是被重写了
如:
window.alert=function(msg){
console.log(msg);
}
alert("我触发了alert");
你的消息只有在console中看到了
添加回答
举报
0/150
提交
取消