必须填写的字段只能用整数填充

时间:2013-05-14 12:27:57

标签: jquery

我正在验证一个字段,在该字段中,字段应仅填充整数并验证是否还需要该字段?

我按如下方式插入了脚本标记:

<script type="text/javascript" src="jquery.numeric.js"></script>
<script>
jQuery(document).ready(function(){
$("#estvalue").numeric({
negative: false 
}, 
function() {
alert("No negative values");
this.value = "";
this.focus(); });
});
  </script>
<input name="Est_Value" id="estvalue" class="regi_input_1" style="width: 150px; height: 25px;" type="text" />

1 个答案:

答案 0 :(得分:0)

使用HTML5

<input type="number" min="0" />


<input name="Est_Value" id="estvalue" class="regi_input_1" style="width: 150px; height: 25px;" type="number" min="0" />

使用JavaScript验证

<input name="Est_Value" id="estvalue" class="regi_input_1" style="width: 150px; height: 25px;" type="text" onkeypress="if ( isNaN( String.fromCharCode(event.keyCode) )){ alert('numbers only'); return false; }" />

工作演示http://jsfiddle.net/cse_tushar/FEVrB/