html5:数字输入类型

发布于 2024-12-14 06:48:06 字数 178 浏览 1 评论 0原文

我注意到 FF 和 Chrome 处理数字输入类型的方式很有趣。如果我的值为 12.23,Chrome 会抱怨输入无效,但 FF7 对此没问题。仅当我将其更改为 12,或将输入类型更改为文本时,Chrome 才会接受它。这是 Chrome 在数字输入类型方面的“正常”行为吗? Ubuntu 10.10 上的最新 Chrome 会出现这种情况

I've noticed something interesting in the ways FF and Chrome treat numeric input type. If I have a value of 12.23 Chrome complains about invalid input, but FF7 is fine with that. Chrome will only accept it if I change it to 12, or change the input type to text. Is that the 'normal' behavior of Chrome in regard to numeric input type? This occurs with the latest Chrome on Ubuntu 10.10

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

难如初 2024-12-21 06:48:06

Firefox 尚未实现 number,因此它报告说它没问题,因为它正在验证为 text 字段。

Chrome 已实现 number数字输入的默认步骤1,因此只有整数才有效。您的值不是整数,因此您需要显式设置step

<input type="number" value="12.23" step="0.001">

Here's一个例子

Firefox hasn't yet implemented number, so it's reporting that it's fine because it's validating as a text field.

Chrome has implemented number, and the default step for a number input is 1, therefore only whole numbers are valid. Your value isn't a whole number, so you need to explicitly set the step:

<input type="number" value="12.23" step="0.001">

Here's an example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文