CSS禁止文字选中

时间:2022-01-10 05:50:53
-moz-user-select:none;/*firefox*/
-webkit-user-select:none;/*webkit*/
-ms-user-select:none;/*ie10*/
-khtml-user-select:none;/*早期浏览器*/
user-select:none;

IE10以下浏览器无相关css设定

//IE6-IE9
document.body.onselectstart=document.body.ondrag=function(){
return false;
}