html5+CSS 禁止IOS长按复制粘贴实现

来源:互联网 发布:开淘宝店如何交保证金 编辑:程序博客网 时间:2024/06/05 19:03

因为在移动端APP需要实现长按执行别的事件,但是在IOS系统有默认的长按选择复制粘贴,禁止此功能在网上找了很多资料,最终整理出目前最好的解决方法。

项目是APP,已经经过多款手机适配此时,因此可以放心使用。

/*设置IOS页面长按不可复制粘贴,但是IOS上出现input、textarea不能输入,因此将使用-webkit-user-select:auto;*/*{    -webkit-touch-callout:none;  /*系统默认菜单被禁用*/    -webkit-user-select:none; /*webkit浏览器*/    -khtml-user-select:none; /*早期浏览器*/    -moz-user-select:none;/*火狐*/    -ms-user-select:none; /*IE10*/    user-select:none;}input,textarea {    -webkit-user-select:auto; /*webkit浏览器*/    margin: 0px;    padding: 0px;    outline: none;}


0 0