📅  最后修改于: 2020-11-01 07:44:37             🧑  作者: Mango
HTML
它可以容纳不限数量的字符,并且文本以固定宽度的字体(通常是快递)显示。
HTML文本区域的大小由
输出:
Element | Chrome | IE | Firefox | Opera | Safari |
Yes | Yes | Yes | Yes | Yes |
Attribute | Description |
---|---|
autofocus | It specifies that a text area should be automatically get focused when the page is loaded. |
form | It specifies one or more forms the textarea belongs to. |
maxlength | It specifies the maximum number of characters allowed in the text area. |
placeholder | It specifies a short hint that describes the expected value of a textarea. |
required | It specifies that textarea must be filled out. |
wrap | It specifies that how the texts in the textarea are wrapped at the time of the submission of the form. |
form属性指定文本区域所属的一个或多个表单。
The text area above is outside the form element, but should still be a part of the form.
Note: The form attribute is not supported in Internet Explorer.
输出:
上面的textarea元素在表单外部,但仍是表单的一部分。
注意:Internet Explorer不支持form属性。