HTML < textarea >标记用于定义一个多行文本输入控件。
它可以容纳无限数量的字符,并且文本以固定宽度的字体(通常是 courier)显示。
HTML textarea 的大小由 <cols> 和 <rows> 属性定义,也可以通过 CSS height 和 width 属性定义。
<!DOCTYPE> <html> <body> <textarea rows="9" cols="70"> JavaTpoint textarea tag example with rows and columns. </textarea> </body> </html>
输出:
属性 | 描述 |
---|---|
自动对焦 | 它指定在加载页面时应自动获得焦点的文本区域。 |
形式 | 它指定了 textarea 所属的一种或多种形式。 |
最长长度 | 它指定文本区域中允许的最大字符数。 |
占位符 | 它指定了一个简短的提示,用于描述文本区域的预期值。 |
必需的 | 它指定必须填写 textarea。 |
裹 | 它指定在提交表单时 textarea 中的文本如何包装。 |
form 属性指定文本区域所属的一种或多种形式。
<form action="updates.jsp" id="usrform"> Name: <input type="text" name="usrname"> <input type="submit"> </form> <br> <textarea rows="9" cols="70" name="comment" form="usrform"> Enter text here...</textarea> <p>The text area above is outside the form element, but should still be a part of the form.</p> <p><b>Note:</b> The form attribute is not supported in Internet Explorer.</p>
输出:
上面的 textarea 元素在 form 之外,但它仍然是 form 的一部分。
注意: Internet Explorer 不支持 form 属性。
元素 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
<textarea> | Yes | Yes | Yes | Yes | Yes |
© Copyright 2011-2021 www.rocschool.com. All rights reserved. Developed by RocSchool. Powered by qibosoft X1.0 Code. 琼ICP备2021004297号-1