介绍
之前在项目里面用iScrollJs,在滚动区域出现表单input、textarea、select无法选中聚焦问题
解决
直接添加如下代码
function allowFormsInIscroll(){
[].slice.call(document.querySelectorAll('input, select, button,textarea')).forEach(function(el){
el.addEventListener(('ontouchstart' in window)?'touchstart':'mousedown', function(e){
e.stopPropagation();
})
})
}
document.addEventListener('DOMContentLoaded', allowFormsInIscroll, false);