可以用  * ,也可作用于一个div

div{
  -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输入框不可用,可以添加这一句解决这个问题:

input{
  -webkit-user-select: auto;
}
11-17 16:56