若要将全部的文字都取消长按复制,只需在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; }
来源:CSDN
作者:csdn9_14
链接:https://blog.csdn.net/csdn9_14/article/details/77330335