user-select有兩個值:
none:用戶不能選擇文本
text:用戶可以選擇文本
需要注意的是:user-select并不是一個W3C的CSS標(biāo)準(zhǔn)屬性,瀏覽器支持的不完整,需要對每種瀏覽器進行調(diào)整
代碼如下:
body{
-moz-user-select: none; /*火狐*/
-webkit-user-select: none; /*webkit瀏覽器*/
-ms-user-select: none; /*IE10*/
-khtml-user-select: none; /*早期瀏覽器*/
user-select: none;
}
IE6-9還沒發(fā)現(xiàn)相關(guān)的CSS屬性
代碼如下:
//IE6-9
document.body.onselectstart = document.body.ondrag = function(){
return false;
}
更多信息請查看IT技術(shù)專欄