限制输入框只能输入数字, onafterpaste防止用户从其它地方copy内容粘贴到输入框:
<input type="text" onkeyup="this.value=this.value.replace(/[^\d]/g,'')" onafterpaste="this.value=this.value.replace(/[^\d]/g,'') " value="1"/>
2023-01-07 21:27:14
限制输入框只能输入数字, onafterpaste防止用户从其它地方copy内容粘贴到输入框:
<input type="text" onkeyup="this.value=this.value.replace(/[^\d]/g,'')" onafterpaste="this.value=this.value.replace(/[^\d]/g,'') " value="1"/>