标签: javascript jquery html5
当我关闭浏览器关闭按钮时,我想要重新发布页面。我有这个代码,但它无法正常工作。请帮助我。我可以这样做。
window.onbeforeunload = function() { if (window.confirm('yes/no?')) { window.location="http://www.google.com"; } else { alert('staying this page'); } }