-1

我正在验证一个字段,在该字段中应该只用整数填充,并且还给出了需要该字段的验证?

我插入脚本标签如下:

<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" />
4

1 回答 1

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/

于 2013-05-14T12:29:51.813 回答