本文主要和大家分享JS如何實現禁止瀏覽器回退,主要以程式碼形式,希望能幫助大家。
//禁止浏览器的回退 $(function() { if (window.history && window.history.pushState) { $(window).on('popstate', function () { window.history.pushState('forward', null, '#'); window.history.forward(1); }); } window.history.pushState('forward', null, '#'); //在IE中必须得有这两行 window.history.forward(1); });
相關推薦:
以上是JS如何實現禁止瀏覽器回退的詳細內容。更多資訊請關注PHP中文網其他相關文章!