首页 > 代码库 > 限制input只能输入数字/数字和小数点

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

1.限制input只能输入数字

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

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

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

 

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