可以用两种方法解决
1)css
body{
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
- js
document.onselectstart=new Function(“return false”);
原文:https://blog.youkuaiyun.com/f286853387/article/details/80110344
可以用两种方法解决
1)css
body{
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
原文:https://blog.youkuaiyun.com/f286853387/article/details/80110344