标签: javascript google-chrome back-button
我正在为onbeforeunload()事件实现一条消息,当用户尝试刷新或放弃该页面时它正常工作,但是当用户点击后退按钮时它无法正常工作。知道会发生什么事吗?
我正在使用的代码就是这个
window.onbeforeunload = function(event) { return 'Are you sure you want to leave this page? All data that was entered will be lost.'; };
提前致谢!