限制input输入除数字外字符

虽然很简单,但是很实用,记录下来,兼容IE8以上及其他主流浏览器

<input autocomplete="off" id="Order" maxlength="9" oninput="this.value=this.value.replace(/\D/g,'')"

其中replace函数里的正则表达式可以任意更换自己想要过滤的,maxlength限制了最大长度为9。

posted @ 2015-11-26 21:47  段毅_DoinG  阅读(336)  评论(0编辑  收藏  举报