-webkit-user-select:none
-moz-user-select:none
-ms-user-select:none
user-select:none
}
根据自己的需求,添加给合适的类或标签,建议全部4行全部写,保证最大化兼容各类浏览器
-webkit-user-select: none只有WebKit内核(Safari、Chrome)支持,CSS世界唯一的解决方法。
只有Webkit有禁止选择的属性
CSS代码中加
*{moz-user-select: -moz-none
-moz-user-select: none
-o-user-select:none
-khtml-user-select:none
-webkit-user-select:none
-ms-user-select:none
user-select:none
}