js实现禁止浏览器后退按钮
程序员文章站
2022-03-19 15:01:46
...
function BanBack(ele) {
//禁止浏览器后退按钮
if (window.history && window.history.pushState) {
$(window).on('popstate', function () {
window.history.pushState('forward', null, '#');
window.history.forward(1);
if (ele) {//特殊处理后退url地址
window.location.href = ele;
}
});
}
window.history.pushState('forward', null, '#'); //在IE中必须得有这两行
window.history.forward(1);
}
上一篇: postgresql 中position函数的性能详解
下一篇: 使用matplotlib进行绘画