how many characters are possible in an input field in html?

前端 未结 6 1850
小蘑菇
小蘑菇 2020-12-01 14:35

What is the \"natural\" number of allowed characters in an input field in html?

thanks a lot

addition due to the comments

i don\'t n

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-01 15:24

    When the type attribute has the value "text" or "password", this attribute specifies the maximum number of characters the user may enter. This number may exceed the specified size, in which case the user agent should offer a scrolling mechanism. The default value for this attribute is an unlimited number.

    Source: http://www.w3.org/TR/html401/interact/forms.html#adef-maxlength

提交回复
热议问题