首页 > 网站 > WEB开发 > 正文

jquery 设置浏览器屏蔽键盘回退功能

2024-04-27 15:11:23
字体:
来源:转载
供稿:网友

记录一下,方便日后使用,如果有人发现有什么不对的地方,请多多指教

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);

window.history.forward(1); // 原理就是产生一个“前进”的动作,以抵消后退功能


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表