HTML5:有什么方法可以将输入类型数字中的逗号更改为空格吗?

发布于 2024-11-14 05:40:08 字数 116 浏览 1 评论 0原文

有什么方法可以将输入类型数字中的逗号更改为空格吗? (没有 JavaScript)

默认情况下,它会在 3 位数字后用逗号 (,) 格式化(分割)数字。

有什么想法吗?

Is there any way to change comma to space in input-type-number? (without javascript)

by default it format(split) number with commas (,) after 3 digits.

Any ideas?

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

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

发布评论

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

评论(1

街角卖回忆 2024-11-21 05:40:08

输入类型编号没有任何可用的自定义。
只能在点分隔和无分隔之间切换。

因此,要显示数字 93.991,请使用:

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

或者如果需要更精确 (93.9911),请使用

<input type="number" step="0.0001">

或者如果需要仅使用整数:

<input type="number" step="1">
<input type="number" step="0,5">

在 Google Chrome 版本 34.0.1799.0 canary 中测试

There is no any customization available for input-type-number.
It is only possible to switch between dot separation and without any separation.

So, to show number 93.991 use:

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

or if it is required more precision (93.9911) use

<input type="number" step="0.0001">

or if it is required to use only whole numbers:

<input type="number" step="1">
<input type="number" step="0,5">

Tested in Google Chrome Version 34.0.1799.0 canary

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