问题:input
标签type=number
时maxlength
属性无效
解释:通过在MDN上搜索得知maxlength
属性是控制value
的最大长度(最多字符数目),maxlength
属性对于type=password, search, tel, text, url
,这五种生效,附上链接
解决方案:
iview
的<InputNumber/>
<input type="number" oninput="if(value.length>11)value=value.slice(0,11)