虽然很简单,但是很实用,记录下来,兼容IE8以上及其他主流浏览器
<input autocomplete="off" id="Order" maxlength="9" oninput="this.value=this.value.replace(/\D/g,‘‘)"
其中replace函数里的正则表达式可以任意更换自己想要过滤的,maxlength限制了最大长度为9。
限制input输入除数字外字符
原文:http://www.cnblogs.com/duanyi/p/4999068.html