Dafrok / vue-iscroll-view

IScroll-view component for Vue 2.x
https://dafrok.github.io/vue-iscroll-view
MIT License
148 stars 26 forks source link

ios 点击事件失效/链接失效 #29

Closed gaofei019 closed 6 years ago

gaofei019 commented 6 years ago

ios 点击事件失效/链接失效

Dafrok commented 6 years ago

touch-action

gaofei019 commented 6 years ago

配置option的click需要判断系统,ios中click参数为false

function iScrollClick(){ if (/iPhone|iPad|iPod|Macintosh/i.test(navigator.userAgent)) return false; if (/Chrome/i.test(navigator.userAgent)) return (/Android/i.test(navigator.userAgent)); if (/Silk/i.test(navigator.userAgent)) return false; if (/Android/i.test(navigator.userAgent)) { var s=navigator.userAgent.substr(navigator.userAgent.indexOf('Android')+8,3); return parseFloat(s[0]+s[3]) < 44 ? false : true } }

Dafrok commented 6 years ago

sorry,审题审错了