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>

posted on 2017-03-06 13:48  小棍同行  阅读(76)  评论(0)    收藏  举报

导航