1
我試圖阻止瀏覽器中的後退/前進按鈕,但沒有成功!任何幫助表示讚賞...後退按鈕在本地工作,但在服務器上失敗
下面的代碼工作在我的本地系統,但不是在服務器上。
history.pushState(null, document.title, location.href);
window.addEventListener('popstate', function (event) {
history.pushState(null, document.title, location.href);
});
你得到任何錯誤?檢查控制檯,並讓我們知道 –
不,沒有在控制檯中顯示錯誤.. –