限制输入框只能输入数字, onafterpaste防止用户从其它地方copy内容粘贴到输入框:
<input type="text" οnkeyup="this.value=this.value.replace(/[^\d]/g,'')" onafterpaste="this.value=this.value.replace(/[^\d]/g,'') " value="1"/>
限制输入框只能输入数字, onafterpaste防止用户从其它地方copy内容粘贴到输入框:
<input type="text" οnkeyup="this.value=this.value.replace(/[^\d]/g,'')" onafterpaste="this.value=this.value.replace(/[^\d]/g,'') " value="1"/>
转载于:https://www.cnblogs.com/yzuzhang/p/5161250.html