フィールドに整数のみを入力する必要があるフィールドの検証に取り組んでおり、フィールドが必要であるという検証も行われますか?
次のようにスクリプトタグを挿入しました。
<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" />