限制 input text 只能输入数字

在标签中加上下面代码就可以

onkeyup=”this.value=this.value.replace(/\D/g,”)” onafterpaste=”this.value=this.value.replace(/\D/g,”)”

例如:

<input type="text"  onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'')" style="width:230px;height: 25px" />

猜你喜欢

转载自blog.csdn.net/qq_37131111/article/details/80865874