如何限制html标签input的长度

如题所述

1、input文本框的输入长度的话可以用maxlength属性来限制输入字段的最大长度:
<input type="text" maxlength="10" />
2、如果是限制input的显示长度的话,可以直接用CSS中的width来限制:
<input type="text" style="width:200px" />
温馨提示:答案为网友推荐,仅供参考
相似回答