css 设置文本不可复制
1 -moz-user-select:none; /* Firefox私有属性 */ 2 -webkit-user-select:none; /* WebKit内核私有属性 */ 3 -ms-user-select:none; /* IE私有属性(IE10及以后) */ 4 -khtml-user-select:none; /* KHTML内核私有属性 */ 5 -o-user-select:none; /* Opera私有属性 */ 6 user-select:none; /* CSS3属性 */
此方法为了阻止用户双击文本使文本选中高亮显示。
1 user-select:none // 防止文本被选中 2 user-select:auto // 默认值,可被选中 3 user-select:text // 文本可以被选中 4 user-select:all // 默认是双击选中改为单击选中