该问题主要针对移动端,页面为应用内容时(比如游戏页面),长按弹出一个菜单很奇葩。然而实测,微信内打开,复制
、选择
菜单是没有了,但是还会有一个在浏览打开
的菜单。有谁知道怎么把这玩意也干掉,请留言告知
*{
-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;
pointer-events:none;
touch-callout:none;
}
input,textarea {
/*上面禁用后,input、textarea不能输入,因此设置为auto*/
-webkit-user-select:auto; /*webkit浏览器*/
margin: 0px;
padding: 0px;
outline: none;
}