js限制输入框只能输入数字、负数和小数点
代码块
例如:
<!--限制文本框只能输入正数-->
<input type="text" onkeyup="this.value=this.value.replace(/\D/g,'')"/>
<!--限制文本框只能输入正数、小数-->
<input type="text" onkeyup="this.value=this.value.replace(/[^\d.]/g,'')"/>
<!--限制文本框只能输入正数、小数、负数-->
<input type="text" onkeyup="this.value=this.value.replace(/[^\-?\d.]/g,'')"/>
<h2>
<a href="http://jinan.changtu.com/">济南汽车站时刻表</a></h2>
浙公网安备 33010602011771号