标签: javascript html input field
我的网站上有一个文本字段,我希望限制用户写入超过2个字母。
<label>Text</label> <input type='text' id='changeText' name='changeText'>
答案 0 :(得分:1)
<input type='text' id='changeText' name='changeText' maxlength="2">
使用最大长度属性