欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

html5中焦点是啥属性

程序员文章站 2024-04-02 17:19:28
...

在html5中,焦点是“autofocus”属性,该属性是一个布尔属性,规定当页面加载时input元素应该自动获得焦点;如果使用autofocus属性,则input元素会获得焦点。

html5中焦点是啥属性

本教程操作环境:windows7系统、HTML5版、Dell G3电脑。

在html5中,焦点是“autofocus”属性。该属性是 HTML5 中的新属性。

autofocus 属性是一个布尔属性。

autofocus 属性规定当页面加载时 input 元素应该自动获得焦点。

如果使用该属性,则 input 元素会获得焦点。

语法:

<input autofocus="autofocus">

注:在 XHTML 中,禁止属性最小化,autofocus 属性必须定义为 <input autofocus="autofocus" />。

示例:

<form action="#">
  用户名: <input type="text" name="name"><br>
  密 码: <input type="password" name="password" autofocus="autofocus"><br><br>
  <input type="submit">
</form>

html5中焦点是啥属性

相关推荐:《html视频教程

以上就是html5中焦点是啥属性的详细内容,更多请关注其它相关文章!

相关标签: html5 焦点