HTML <textarea> 标签的 autofocus 属性

实例

自动获得焦点的文本区域:

<textarea autofocus>
 在 w3school.org.cn,您将学会如何开发网站。我们提供全面的免费 web 技术教程。
</textarea> 

亲自试一试

浏览器支持

Internet Explorer 10、Firefox、Opera、Chrome 以及 Safari 支持 autofocus 属性。

注释:Internet Explorer 9 以及更早的版本不支持 <textarea> 标签的 autofocus 属性。

定义和用法

autofocus 属性是逻辑属性。

当设置该属性后,它规定在页面加载后文本区域自动获得焦点。

HTML 4.01 与 HTML 5 之间的差异

autofocus 属性 HTML5 中的新属性。

HTML 与 XHTML 之间的差异

在 XHTML 中,不允许属性简写,autofocus 属性必须定义为 <textarea autofocus="autofocus">。

语法

<textarea autofocus>
目录