user-select有兩個(gè)值:
none:用戶不能選擇文本
text:用戶可以選擇文本
需要注意的是:user-select并不是一個(gè)w3c的css標(biāo)準(zhǔn)屬性,瀏覽器支持的不完整,需要對(duì)每種瀏覽器進(jì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;
}