常用正则 input输入限制

 
文本框只能输入数字(小数点也不能输入)
<input onkeyup="this.value=this.value.replace(/D/g,'')" onafterpaste="this.value=this.value.replace(/D/g,'')">
 
路漫漫其修远兮
原文地址:https://www.cnblogs.com/reded/p/8513065.html