-
慕尼黑的夜晚无繁华
history.pushState(null, null, document.URL);window.addEventListener('popstate', function () { history.pushState(null, null, document.URL);});
-
弑天下
jQuery(document).ready(function ($) { if (window.history && window.history.pushState) { $(window).on('popstate', function () { window.history.forward(1); }); }
-
温温酱
使用onbeforeunload比较合适吧,弹出一个提示框让用户确认,这样用户以任何方式关闭此页面前都需确认window.onbeforeunload = function (e) { e = e || window.event; // 兼容IE8和Firefox 4之前的版本 if (e) { e.returnValue = '关闭提示'; } // Chrome, Safari, Firefox 4+, Opera 12+ , IE 9+ return '关闭提示';};window.onbeforeunload
-
绝地无双
还有种做法,将目标页的链接修改为:<a href="#" onclick="location.replace('目标页.html')">目标页.html</a>