H5手机上,禁用长按选择功能
1、屏蔽所有标签:
* {
-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}2、A标签的屏蔽:
a{
-webkit-tap-highlight-color:transparent;
}3、实现:active效果
document.body.addEventListener('touchstart', function () { });
