使用iscroll后,input等不能输入内容的解决办法

在iscroll.js文件中加入如下代码
function allowFormsInIscroll(){
 [].slice.call(document.querySelectorAll('input, select, button')).forEach(function(el){
 el.addEventListener(('ontouchstart' in window)?'touchstart':'mousedown', function(e){
 e.stopPropagation();
 
 })
 })
 }
 document.addEventListener('DOMContentLoaded', allowFormsInIscroll, false);

你可能感兴趣的:(使用iscroll后,input等不能输入内容的解决办法)