html5:数字输入类型
我注意到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Firefox 尚未实现
number
,因此它报告说它没问题,因为它正在验证为text
字段。Chrome 已实现
number
和数字
输入的默认步骤是1
,因此只有整数才有效。您的值不是整数,因此您需要显式设置step
:Here's一个例子。
Firefox hasn't yet implemented
number
, so it's reporting that it's fine because it's validating as atext
field.Chrome has implemented
number
, and the default step for anumber
input is1
, therefore only whole numbers are valid. Your value isn't a whole number, so you need to explicitly set thestep
:Here's an example.