-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 に答える