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

/*设置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;
}

猜你喜欢

转载自blog.csdn.net/xjiayi/article/details/79359099