不允许在 <input type=number/> 中输入字母字符.

Don#39;t allow typing alphabetic characters in a lt;input type=number /gt;(不允许在 lt;input type=number/gt; 中输入字母字符.)
本文介绍了不允许在 <input type=number/> 中输入字母字符.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要有一个文本框,无论何时在其中输入,都应该只允许数字 [0-9].我使用了 type="number" ,它肯定拥有客户端验证,但也允许输入其他字母.我可以通过跟踪每个 keydown 并与正则表达式匹配来做到这一点,但我想知道是否有任何方法可以限制只使用 html 标签而不是在 JavaScript 中定义任何函数以在每个 keydown 中进行比较?

I need to have a textbox, where, whenever typed inside should ONLY allow numbers [0-9]. I've used type="number" which definitely holds the client side validation but also allows to type other alphabets. I can do it by tracking each keydown and matching with regex but I was wondering if there is any way I can restrict to type using only html tags and NOT defining any functions in JavaScript to compare in each keydown?

不足够的代码是:

    <input type="number" id="txt_number" maxlength="70" name="txt_name" placeholder="Number">

感谢任何帮助.

推荐答案

你可以使用 jquery.numeric 插件.

看这里 类似的问题.

$(document).ready(function(){
   $(".numeric").numeric();
});

这篇关于不允许在 &lt;input type=number/&gt; 中输入字母字符.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)