iScroll5使用笔记

1.click:true checkbox点击不了

解决方法:在源码1598行修改为

if (!e._constructed && !utils.preventDefaultException(e.target, this.options.preventDefaultException)) {
                        e.preventDefault();
                        e.stopPropagation();
                    }

相关链接:https://github.com/cubiq/iscroll/issues/876

https://jsfiddle.net/ChristopherBrix/9384wow8/

https://jsfiddle.net/ChristopherBrix/caz20168/

原文地址:https://www.cnblogs.com/anyaran/p/4702858.html