html 仅限数字输入字段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 仅限数字输入字段相关的知识,希望对你有一定的参考价值。

http://stackoverflow.com/questions/891696/jquery-what-is-the-best-way-to-restrict-number-only-input-for-textboxes-all

<input class="numbersOnly" type="text" id="phone"  maxlength="10">
<input class="numbersOnly" type="text" id="shipfrom_zip"  maxlength="5">
<input class="numbersOnly" type="text" id="shipto_zip"  maxlength="5">
<input class="numbersOnly" type="text" id="pallets">


<script>

$( document ).ready(function() {
  // add numeric input only fields for these four 
	$('#phone, #shipfrom_zip, #shipto_zip, #pallets').keyup(function () { 
	    this.value = this.value.replace(/[^0-9\.]/g,'');
	});	
      
});	

</script>







































以上是关于html 仅限数字输入字段的主要内容,如果未能解决你的问题,请参考以下文章

如何将 CreateWindowEx 限制为仅限字母数字输入?

Django 型号字段

Oracle SQL 查询中的正则表达式 - 仅限数字和句点

通过用户输入城市名称检索邮政编码的最佳 API(仅限美国)? [关闭]

需要一个仅限数字的 Windows 控件 TextBox [重复]

为啥“数字”类型的 html 输入允许在字段中输入字母“e”?