移动端之禁止长按复制文字(兼容ios)

移动端之禁止长按复制文字

在css中设置以下即可

	*{
    -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;
}

在添加完这段代码后,在IOS 上会有问题的,这个时候你会发现input 框无法正在输入了内容了;造成这个原因就是 -webkit-user-select:none; 这个属性造成的。解决这个方法 就是 在css 文件中同时设置一下input 的属性,如下所示:

input {
     -webkit-user-select:auto; /*webkit浏览器*/
}

禁用后,如果想让一段文字能复制的话例如:找到这个元素 ,在css中写以下即可

 h1{
      -webkit-touch-callout:text;
      -webkit-user-select:text;
      -khtml-user-select:text;
      -moz-user-select:text;
      -ms-user-select:text;
      user-select:text;
    }

你可能感兴趣的:(移动端)