H5禁用长按选取,原生拷贝功能

在项目中,有的地方不需要原生的拷贝功能,需要把他去掉,那我们H5应该怎么弄呢,很简单:

  只需要在最外层的div上面加上一下样式:

.box{
 -webkit-touch-callout:none;    
    -webkit-user-select:none;  
    -khtml-user-select:none;    
    -moz-user-select:none;
    -ms-user-select:none;    
    user-select:none; 
}

  代码写好,轻松搞定!

转载于:https://www.cnblogs.com/ctb-web/p/9360654.html

你可能感兴趣的:(H5禁用长按选取,原生拷贝功能)