其他分享
首页 > 其他分享> > vue实现页面文字禁止被选中

vue实现页面文字禁止被选中

作者:互联网

其实使用css就可以实现

*{ 
 -webkit-touch-callout:none; /*系统默认菜单被禁用*/
 -webkit-user-select:none; /*webkit浏览器*/
 -khtml-user-select:none; /*早期浏览器*/
 -moz-user-select:none;/*火狐*/
 -ms-user-select:none; /*IE10*/
 user-select:none; 
} 
input{ 
 -webkit-user-select:auto; /*webkit浏览器*/ 
}
textarea{
 -webkit-user-select:auto; /*webkit浏览器*/
}

 

标签:none,vue,浏览器,auto,选中,user,webkit,select,页面
来源: https://www.cnblogs.com/heibaiqi/p/16580301.html