举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > html onfocus属性 HTML DOM Input Month autofocus 属性

html onfocus属性 HTML DOM Input Month autofocus 属性

2023-04-29 11:18

html onfocus属性 HTML DOM Input Month autofocus 属性

html onfocus属性 HTML DOM Input Month autofocus 属性

html onfocus属性

Input Month autofocus 属性

Input Month 对象参考手册 Input Month 对象

实例

查看 month 字段是否在页面加载后自动获取焦点:

var x = document.getElementById("myMonth").autofocus;
x输出结果为:
true


定义和用法

autofocus 属性用于设置或者返回 month 字段在页面加载后是否自动获取焦点。

该属性反映了 HTML autofocus 属性。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主流浏览器都支持 autofocus 属性。

注意: Internet Explorer 9 及更早IE版本、 Opera 12 及更早Opera版本浏览器不支持该属性。

注意:Internet Explorer 或 Firefox 浏览器不支持使用 type="month" 属性的 <input> 元素。


语法

返回 autofocus 属性:

monthObject.autofocus

设置 autofocus 属性:

monthObject.autofocus=true|false

属性值

描述
true|false 描述了 month 字段在页面加载后是否获取焦点
  • true - month 字段获取焦点
  • false - 默认。month 字段不获取焦点。

技术细节

返回值: 布尔值,如果页面在加载后 month 字段自动获取焦点返回 true,否则返回false。


相关页面

HTML 参考手册: HTML <input> autofocus 属性


Input Month 对象参考手册 Input Month 对象
阅读全文
以上是编程学为你收集整理的html onfocus属性 HTML DOM Input Month autofocus 属性全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
  •  PostgreSQL RADIUS 认证

    PostgreSQL RADIUS 认证

    2023-05-23

    这种认证方法的操作类似于password,不过它使用 RADIUS 作为密码验证方式。RADIUS 只被用于验证 用户名/密码对。因此,在 RADIUS...

  •  PostgreSQL 角色成员关系

    PostgreSQL 角色成员关系

    2023-06-02

    把用户分组在一起来便于管理权限常常很方便:那样,权限可以被授予一整个组或从一整个组回收。在PostgreSQL中通过创建一个表示组...

  • html input disabled HTML DOM Input Email disabled 属性

    html input disabled HTML DOM Input Email disabled 属性

    2023-05-03

    Input Email disabled 属性 Input Email 对象实例禁用 email 字段:document.getElementById("myEmail").disabled = true;输出结...

  •  HTML DOM Input Search required 属性

    HTML DOM Input Search required 属性

    2023-06-17

    Input Search required 属性 Input Search 对象实例查看搜索字段在提交表单前是否为必填字段:var x = document.getElementById(...

  • html input required HTML DOM Input Week required 属性

    html input required HTML DOM Input Week required 属性

    2023-04-23

    Input Week required 属性 Input Week 对象实例查看 week 字段在提交表单前是否为必填字段:var x = document.getElementById("m...

© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部