当前位置: 代码迷 >> Web前端 >> Input 限制输入数目字
  详细解决方案

Input 限制输入数目字

热度:325   发布时间:2012-11-23 22:54:33.0
Input 限制输入数字
<input type="text" name="queue_code"
			id="queue_code" class="input5" v_datatype="integer" maxlength="20"
			onkeyup="this.value=this.value.replace(/\D/g,'')"
			onafterpaste="this.value=this.value.replace(/\D/g,'')"
			ondragenter="return   false"  />
  相关解决方案