如何限制input只能输入数字

在input上增加onkeyup和onafterpaste事件,事件中用正则表达式替换其它字符,测试没有问题。

<input type="text" value="" id="num" onkeyup="this.value=this.value.replace(/\D/g,'')"  onafterpaste="this.value=this.value.replace(/\D/g,'')"/>

上一篇:[HMLY]8.Cocoa


下一篇:java.util.Map.Entry接口