禁止长按

2021-4-25 768

禁止长按一般就是指的手机端!亲测以下方法可以真实的解决!长按出现的复制等全局选项!!

       <style type="text/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;
}
input,textarea {
    -webkit-user-select:auto; /*webkit浏览器*/
    margin: 0px;
    padding: 0px;
    outline: none;
}
</style>

以上代码加到:

</head>  前边就行!

上一篇:windows待机后不出密码框
下一篇:储存为web和设备所用格式灰色不可选的解决方法
  • lcgaochao 2021-4-26
    2
    inherit:系统默认菜单不被禁用
  • lcgaochao 2021-4-26
    3
    default 也可以试试