user-select有兩個值:
none:用戶不能選擇文本
text:用戶可以選擇文本
需要注意的是:user-select並不是一個W3C的CSS標准屬性,浏覽器支持的不完整,需要對每種浏覽器進行調整
復制代碼代碼如下:
body{
-moz-user-select: none; /*火狐*/
-webkit-user-select: none; /*webkit浏覽器*/
-ms-user-select: none; /*IE10*/
-kHtml-user-select: none; /*早期浏覽器*/
user-select: none;
}
IE6-9還沒發現相關的CSS屬性
復制代碼代碼如下:
//IE6-9
document.body.onselectstart = document.body.ondrag = function(){
return false;
}