user-select有两个值:

none:用户不能选择文本

text:用户可以选择文本

需要注意的是:user-select并不是一个W3C的CSS标准属性,浏览器支持的不完整,需要对每种浏览器进行调整

body{
    
    -moz-user-select: none; /*火狐FF*/
    
    -webkit-user-select: none; /*webkit浏览器*/
    
    -ms-user-select: none; /*IE10*/
    
    -khtml-user-select: none; /*早期浏览器*/
  
    -o-user-select: none; /*opera浏览器*/
      
    user-select: none;
    
}

IE6-9还没发现相关的CSS属性,但可以在文本标签上添加onselectStart

<div onselectstart="return false;"  >你选不了我</div> 

记得要微笑
1.9k 声望4.5k 粉丝

知不足而奋进,望远山而前行,卯足劲,不减热爱。


引用和评论

0 条评论