只能输入数字
Posted hupan508
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了只能输入数字相关的知识,希望对你有一定的参考价值。
http://m.jb51.net/article/83398.htm
第一: 限制只能是整数
<input type = "text" name= "number" id = ‘number‘ onkeyup= "if(! /^d+$/.test(this.value)){alert(‘只能整数‘);this.value=‘‘;}" />
第二: 限制是两位的小数
<input type = "text" name= "price" id = ‘price‘ onkeyup= "if( ! /^d*(?:.d{0,2})?$/.test(this.value)){alert(‘只能输入数字,小数点后只能保留两位‘);this.value=‘‘;}" />
以上是关于只能输入数字的主要内容,如果未能解决你的问题,请参考以下文章