HTML maxlength属性不适用于chrome和safari?

前端之家收集整理的这篇文章主要介绍了HTML maxlength属性不适用于chrome和safari?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<input type="number" maxlength="5" class="search-form-input" name="techforge_apartmentbundle_searchformtype[radius]" id="techforge_apartmentbundle_searchformtype_radius">

这是我的HTML,用firebug(在chrome上)。

我可以在表单字段中编写尽可能多的字符 – 在Chrome和Safari中。

在Firefox或IE10上,限制很好。

我没有在网上找到这个问题。

注意:type =“number” – 不是文本。

有人以前见过这个问题吗?

解决方法

对于type =“number”的输入使用max属性。它将指定您可以插入的最高编号
<input type="number" max="999" />

如果同时添加最大值和最小值,则可以指定允许值的范围:

<input type="number" min="1" max="999" />

example

编辑

如果为了用户体验,您希望用户不能输入超过一定数量的数字,请使用Javascript / jQuery,如此example所示

原文链接:https://www.f2er.com/html/232491.html

猜你在找的HTML相关文章