当前位置:首页 > 前端 > 正文内容

H5手机上,禁用长按选择功能

Z先生9年前 (2016-04-15)前端9318

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 () { });


标签: H5体验美化
分享给朋友:

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。