<input type="text" maxlength="5" /> //可以 <input type="number" maxlength="5" /> //沒有效果 <input type="number" oninput="if(value.length>5) value=value.slice(0,5)" /> //js控制,可以 <input type="tel" maxlength="5" /> //tel型別,可以
此外,tel型別的input在ios上會調出全數字鍵盤,而number型別的input則會調出帶有標點符號的鍵盤。