码迷,mamicode.com
首页 > 其他好文 > 详细

限制input只能输入数字/数字和小数点

时间:2017-08-04 16:46:43      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:ice   red   price   text   orm   control   UI   for   required   

1.限制input只能输入数字

<input id="Number" name="Number" type="text" class="form-control required" onkeyup="value=this.value.replace(/\D+/g,‘‘)" placeholder="请输入数量" />

2.限制input只能输入数字和小数点(用于金额输入框等)

<input id="Price" name="Price" type="text" class="form-control" onkeyup="value=value.replace(/[^\d{1,}\.\d{1,}|\d{1,}]/g,‘‘)" placeholder="请输入单价" />

 

限制input只能输入数字/数字和小数点

标签:ice   red   price   text   orm   control   UI   for   required   

原文地址:http://www.cnblogs.com/chen-yuan/p/7285890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!