阻止长按手机屏幕出现的选中事件

版权声明:复制发表请附上原创博客地址 https://blog.csdn.net/weixin_41077029/article/details/83013171

此方法主要是阻止手机端长按或pc端点击后出现的选中事件

1.pc端
 

body{ 
  -webkit-user-select:none;
  -moz-user-select:none; 
  -ms-user-select:none; 
  user-select:none;
} 

2.app端

此处的.react-cover为需要阻止选中的元素

body .react-cover {
  -webkit-user-select: none; 
  user-select: none; 
}

猜你喜欢

转载自blog.csdn.net/weixin_41077029/article/details/83013171