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

转自:http://www.cnblogs.com/iihe602/p/4269083.html

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

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

posted @ 2017-04-13 15:37  美好的明天  阅读(362)  评论(0)    收藏  举报