一、使用css

  给body加上样式:user-select: none;

二、使用js

  document.oncontextmenu=new Function(“event.returnValue=false”);  //在谷歌、edge等现代浏览器中禁止右键功能

  document.onselectstart=new Function(“event.returnValue=false”);  //对谷歌、edge等现代浏览器生效

  document.onselectstart = new Function(“return false”);     //对IE和火狐、edge生效

 

版权声明:本文为heroljy原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/heroljy/p/9367653.html