小编Rah*_*lIt的帖子

限制用户关闭浏览器的标签或窗口

在访问任何特定页面时,如何限制用户关闭选项卡或浏览器。

window.onbeforeunload = function(e) {

  if (!e) e = window.event;
  e.cancelBubble = true;
  e.returnValue = 'You sure you want to leave?';
  if (e.stopPropagation) {
    e.stopPropagation();
    e.preventDefault();
  }
  return 'You sure you want to leave?';
  return false;
}
Run Code Online (Sandbox Code Playgroud)

我尝试了上面的代码,但是在chrome浏览器上它会弹出以退出页面或停留在页面上。

javascript

-1
推荐指数
1
解决办法
40
查看次数

标签 统计

javascript ×1