标签:
直接在 html 里限制就可以了,上代码:
<input type="text" placeholder="只能输入数字" onkeyup="this.value = this.value.replace(/\D/,‘‘)" >
禁止用户输入非数字
原文地址:http://www.cnblogs.com/LY-leo/p/5752690.html