关于静止ios及android webview 长按默认事件 作者: 吴昊 时间: 2016-07-18 分类: 阅读:次 ## CSS /* 禁止用户选择文字 */ .target { -webkit-user-select: none; -webkit-touch-callout: none; } /* 禁止ios长按图片弹出菜单 */ img { pointer-events: none; } ## JS /* 禁止android长按图片弹出菜单 */ document.getElementById("target").ontouchstart = function(e) { e.preventDefault(); }; 标签: none 相关文章推荐 上一篇: ReactJs名词摘要 下一篇: 安装pysox