保护视图源,禁用右键菜单、禁用鼠标选中、禁止键盘F12键等操作

253 阅读1分钟

在开发过程中,会需要因为版权或者保密等问题防止用户下载视频,获取链接地址等操作; 前端需要做的就是保护视图源,禁用右键菜单、禁用鼠标选中、禁止键盘F12键等操作

 created() {
    this.$nextTick(() => {
      // 1.禁用右键菜单
      document.oncontextmenu = new Function("event.returnValue=false");
      // 2.禁用鼠标选中
      document.onselectstart = new Function("event.returnValue=false");
      // 3.禁止键盘F12键
      document.addEventListener("keydown", function (e) {
        if (e.key == "F12") {
          e.preventDefault(); // 如果按下键F12,阻止事件
        }
      });
    });
  },