HTML5:在移动端禁用长按选中文本功能

来源:互联网 发布:宅男看片app源码 编辑:程序博客网 时间:2024/06/05 15:41

在手机浏览器中,长按可选中文本,但如果在应用中,会给人一种异样的感觉,最好还是禁用此功能为上。

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

0 0
原创粉丝点击