zhoushengmufc / iosselect

webapp通用选择器
MIT License
1.17k stars 345 forks source link

PC端企业微信内置浏览器,无法滚动 #47

Closed gaga-change closed 6 years ago

gaga-change commented 6 years ago

问题出在它的内置浏览器window对象带有ontouchstart事件。但是并不会生效。

// PC端企业微信内置浏览器
'ontouchstart' in window === true

我临时在插件调用前判断了一下才得以处理。

if (~navigator.userAgent.toLowerCase().indexOf('windowswechat')) {
    delete window.ontouchstart
}
zhoushengmufc commented 6 years ago

多谢提供解决方案

gaga-change commented 6 years ago

(^_^)

shichengyu921228 commented 5 years ago

请问具体是在哪里判断啊 我做了判断 但是可能是位置不对 没有生效