1、通过css方式
1)、pc端
moz-user-select: -moz-none;
-moz-user-select: none;
-o-user-select:none;
-khtml-user-select:none;
-webkit-user-select:none;
-ms-user-select:none;
user-select:none;
2)、移动端
-webkit-touch-callout:none;
-moz-touch-callout:none;
-ms-touch-callout:none;
touch-callout:none;
2、通过在body标签添加shuxing
<body oncontextmenu="return false;" onselectstart="return false">
3、通过js方法
document.oncontextmenu=function(){return false;};
document.onselectstart=function(){return false;};
本文参考:https://blog.csdn.net/u012106397/article/details/53501734