如何限制 input type=text 只能接受数字
Posted wpfphp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何限制 input type=text 只能接受数字相关的知识,希望对你有一定的参考价值。
<input type='text' onkeyup="this.value=this.value.replace(/[^0-9]+/,'');" />/只能输入非负整数
<input type='text' onkeyup="this.value=this.value.replace(/[^0-9-]+/,'');" />只能输入整数
以上是关于如何限制 input type=text 只能接受数字的主要内容,如果未能解决你的问题,请参考以下文章
如何限制 <input type="file"> 使其只能选择 .pdf 文件?
如何通过js限制用户在input text中只能输入数字和"-"号?
input属性type为file打开文件资源管理器时,如何限制多次选取或只能一次选取的行为