Closed gaga-change closed 6 years ago
问题出在它的内置浏览器window对象带有ontouchstart事件。但是并不会生效。
ontouchstart
// PC端企业微信内置浏览器 'ontouchstart' in window === true
我临时在插件调用前判断了一下才得以处理。
if (~navigator.userAgent.toLowerCase().indexOf('windowswechat')) { delete window.ontouchstart }
多谢提供解决方案
(^_^)
请问具体是在哪里判断啊 我做了判断 但是可能是位置不对 没有生效
问题出在它的内置浏览器window对象带有
ontouchstart
事件。但是并不会生效。我临时在插件调用前判断了一下才得以处理。