当用户单击一个按钮时,我想通过更改 window.location 将用户带到另一个网页,同时在后台发出 HTTP Post 请求。HTTP Post 必须是异步的。我怎样才能做到这一点?
$(document).ready(function(){
$("#b1").click(function(event){
try{
//call function that sends HTTP POST in the background
window.location="http://www.stackoverflow.com";
} catch(e) {
alert(e.message);
}
});
});