Allow 2 decimal places in lt;input type=quot;numberquot;gt;(在lt;input type=“numbergt;中允许2位小数.)
问题描述
我有一个 <input type="number">
,我想将用户的输入限制为纯数字或小数点后两位小数.
I have a <input type="number">
and I want to restrict the input of the users to purely numbers or numbers with decimals up to 2 decimal places.
基本上,我要求输入价格.
Basically, I am asking for a price input.
我想避免使用正则表达式.有办法吗?
I wanted to avoid doing regex. Is there a way to do it?
<input type="number" required name="price" min="0" value="0" step="any">
推荐答案
step="any"
允许任意位数的小数,使用 step=".01"
,最多允许两位小数.
Instead of step="any"
, which allows for any number of decimal places, use step=".01"
, which allows up to two decimal places.
规范中的更多详细信息:https://www.w3.org/TR/html/sec-forms.html#the-step-attribute
More details in the spec: https://www.w3.org/TR/html/sec-forms.html#the-step-attribute
这篇关于在<input type=“number">中允许2位小数.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在<input type=“number">中允许2位小数.
基础教程推荐
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01