设置手机网页不可长按选中元素的方法

来源:互联网 发布:数据库是什么文件 编辑:程序博客网 时间:2024/04/24 01:38

1.最近在做一个微端的项目,发现在手机上长按屏幕会选中html的元素,用户体验十分不好,故在网上找到一个解决方案,记录并分享给大家

解决方案:在css样式中加入以下样式 就可以了

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

0 0
原创粉丝点击