<input type="text" maxlength="6" /> 效果ok <input type="number" maxlength="6" /> 当input type = number 时maxlength失效,长度可以无限输入。 解放方案: oninput事件 当长度超过截取 <input type="number" oninput="if(value.length>6)value=value.slice(0,6)" />
<input type="text" maxlength="6" /> 效果ok <input type="number" maxlength="6" /> 当input type = number 时maxlength失效,长度可以无限输入。 解放方案: oninput事件 当长度超过截取 <input type="number" oninput="if(value.length>6)value=value.slice(0,6)" />