iScroll4 禁止select等頁面元素默認事件的解決方法
起因在于
onBeforeScrollStart : function(e){ e.preventDefault(); },
這一行,iSroll禁止了事件的默認行為,導致select,option,textarea等元素無法點擊。
解決方法也很簡單,只需做一下判斷,如下:

onBeforeScrollStart : function(e){
var nodeType = e.explicitOriginalTarget ? e.explicitOriginalTarget.nodeName.toLowerCase() : (e.target ? e.target.nodeName.toLowerCase() : '');
if(nodeType != 'select' && nodeType != 'option' && nodeType != 'input' && nodeType != 'textarea'){
e.preventDefault();
}
},
