【H5】禁止IOS、安卓端长按的一些默认操作
禁止触发系统菜单
例:ios的a标签出现小型窗口;
html, body{touch-callout: none;-webkit-touch-callout: none;
}
禁止用户长按出现下载图片菜单、选中文字
html, body{user-select: none;-webkit-user-select: none;
}
例:ios的a标签出现小型窗口;
html, body{touch-callout: none;-webkit-touch-callout: none;
}
html, body{user-select: none;-webkit-user-select: none;
}