跨平台移动端事件长按事件On this page长按事件禁用长按选择文字功能如果是禁用长按选择文字功能,用 css : (这种方法已尝试,可行) 全局\* 或者 局部选择相映的 DOM 加* { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;}但是包含 input 框时会导致不可用,可以添加下面代码:input { -webkit-user-select: auto;}参考移动端长按禁止默认事件总结html5 移动端长按事件填坑历程移动端(H5)的点击事件、滑动事件和长按事件