如何限制 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 文件?

限制input只能输入数字/数字和小数点

如何通过js限制用户在input text中只能输入数字和"-"号?

input属性type为file打开文件资源管理器时,如何限制多次选取或只能一次选取的行为

如何使用JS通过正则限制input输入框只能输入整数,小数两位小数

input只能填数字正则表达式