移动端禁用长按选择功能

            -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

此时ios手机有问题,所有的输入框自动失去焦点无发获取内容,解决方法是加以下样式:
input , textarea{
-webkit-user-select:auto;
}

你可能感兴趣的:(移动端禁用长按选择功能)