禁止触发系统菜单
例:ios的a标签出现小型窗口;
css
html, body{
touch-callout: none;
-webkit-touch-callout: none;
}
禁止用户长按出现下载图片菜单、选中文字
css
html, body{
user-select: none;
-webkit-user-select: none;
}