function send(){ $.ajax({ url: "url", async: true // 这里要用异步 }) } window.onbeforeunload(){ send() return true; }