长按弹出菜单关闭方法

该问题主要针对移动端,页面为应用内容时(比如游戏页面),长按弹出一个菜单很奇葩。然而实测,微信内打开,复制选择菜单是没有了,但是还会有一个在浏览打开的菜单。有谁知道怎么把这玩意也干掉,请留言告知

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

你可能感兴趣的:(长按弹出菜单关闭方法)