直接在 html 里限制就可以了,上代码:
<input type="text" placeholder="只能输入数字" onkeyup="this.value = this.value.replace(/\D/,‘‘)" >
时间: 2024-11-09 01:59:15
直接在 html 里限制就可以了,上代码:
<input type="text" placeholder="只能输入数字" onkeyup="this.value = this.value.replace(/\D/,‘‘)" >