天天看点

h5页面在ios机上禁止长按复制

ios机默认存在长按复制选择,用以下代码取消:

*{

-webkit-touch-callout:none;

-webkit-user-select:none;

-khtml-user-select:none;

-moz-user-select:none;

-ms-user-select:none;

user-select:none;

}

但是以上代码也会禁止输入框的使用,可用以下代码解决:

input {

-webkit-user-select:auto;

}

textarea {                                                                //如果存在textarea也输入不进文本的情况下,加上这个

-webkit-user-select:auto;

}