<input type="text" maxlength="5" /> 可以限制最大输入长度。
如果type是number:<input type="number" maxlength="5" /> maxlength失效,长度可以无限输入。
可以使用JS来解决这个问题:
<input type="number" oninput="if(value.length>5)value=value.slice(0,5)" />
input 属性为 number,maxlength不起作用如何解决?
原文地址:http://toulen.blog.51cto.com/12020200/1916540