0228解决input 属性为 number,maxlength无效情况阅读(17112)条2017/2/28 14:14:21
移动端在使用input数字number类型的时候maxlength竟然无效,因为是手机号码限止11位数字输入。<input type="text" maxlength="11" /> 效果ok,当 <input type="number" maxlength="11" />时maxlength失效,长度可以无限输入。 解放方案:<input type="number" oninput="if(value.length>11)value=value.slice(0,11)" />...阅读全文
Taget:input number maxlength bug