1,添加css:
body{
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
2,或添加js:
document.onselectstart=new Function("return false");
body{
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
2,或添加js:
document.onselectstart=new Function("return false");