利用CSS禁止手机长按出现气泡: 复制、选择等功能

能够用  * ,也可做用于一个divcss

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

input{
  -webkit-user-select: auto;
}
相关文章
相关标签/搜索