ajax请求在IE中响应,在Firefox中无法响应的原因
function abc() { $.ajax({ type: "POST", url: "${pageContext.request.contextPath}/appManager/delAction.do", dataType: "json", data: "appid=" + appid, success: function(msg) { alert(msg); } }); window.location.reload();}
?
经过反复测试发现:原来是因为发送了正确的ajax请求,但是请求还没有发送出去就已经刷新的当前的页面。
解决办法:将刷新页面的请求放在回调函数中运行。
?
function abc() { $.ajax({ type: "POST", url: "${pageContext.request.contextPath}/appManager/delAction.do", dataType: "json", data: "appid=" + appid, success: function(msg) { alert(msg); window.location.reload(); } });}
?