最近做移动平台的应用,使用iscroll使屏幕上下滑动.发现当使用iscroll后,input等不能输入内容了.只要在iscroll.js文件中加入如下代码就ok了. function allowFormsInIscroll(){ [].slice.call(document.querySelectorAll('input, select, button')).forEach(function(el){ el.addEventListener(('ontouchstart' in window)
var oInput = document.querySelector("input");oInput.onkeyup = function () { var value = this.value; if(value.search(/^\d+$/) != 0){ this.value = value.replace(/[^0-9]/g,''); } }