Html限制input输入框只能输入数字

限制输入框只能输入数字, onafterpaste防止用户从其它地方copy内容粘贴到输入框:

<input type="text" onkeyup="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