我正在验证一个字段,在该字段中应该只用整数填充,并且还给出了需要该字段的验证?
我插入脚本标签如下:
<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" />