标签: javascript html
我希望在卸载页面之前向用户发送消息。我的页面在iframe中,页面上有sidemenu,点击加载另一个iframe。我写了这段代码
window.onbeforeunload = function() { return 'Any unsaved changes will be lost'; }
问题是,点击“确定”按钮后会再次显示此消息,然后再次按“确定”,导航到其他页面。如何避免这个