What is the default maximum length of html input \

2019-08-29 13:08发布

What is the default maximum length of html input fields in a form and text area? is it limited at all?

标签: css html5 input
2条回答
ら.Afraid
2楼-- · 2019-08-29 13:26

When there is no max length specified the default is an unlimited number of characters for both textarea and text input.

From the MDN web docs for textarea,

The maximum number of characters (unicode code points) that the user can enter. If this value isn't specified, the user can enter an unlimited number of characters. MDN Web Docs Textarea

for text input

If no maxlength is specified, or an invalid value is specified, the text input has no maximum length. MDN Web Docs Text Input

查看更多
Emotional °昔
3楼-- · 2019-08-29 13:45

If no maxlength attribute is specified, then there is no limit to how much text a user can enter. This is the same for a text input or a textarea.

查看更多
登录 后发表回答