HTML5:有什么方法可以将输入类型数字中的逗号更改为空格吗?
有什么方法可以将输入类型数字中的逗号更改为空格吗? (没有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
输入类型编号没有任何可用的自定义。
只能在点分隔和无分隔之间切换。
因此,要显示数字 93.991,请使用:
或者如果需要更精确 (93.9911),请使用
或者如果需要仅使用整数:
在 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:
or if it is required more precision (93.9911) use
or if it is required to use only whole numbers:
Tested in Google Chrome Version 34.0.1799.0 canary