当前位置: 首页 > 工具软件 > maxlength > 使用案例 >

input type=number maxlength无效

韩梓
2023-12-01

问题input标签type=numbermaxlength属性无效

解释:通过在MDN上搜索得知maxlength属性是控制value的最大长度(最多字符数目),maxlength属性对于type=password, search, tel, text, url,这五种生效,附上链接

解决方案

  • 其实现在很多的ui框架都会做单独的数字输入框,如iview<InputNumber/>
  • 还有oninput事件 当长度超过截取
<input type="number" oninput="if(value.length>11)value=value.slice(0,11)
 类似资料: