最新的Web开发教程
 

输入时自动对焦物业

输入时间对象参考 输入时间对象

查找出来,如果时间字段自动获取焦点在网页加载时:

var x = document.getElementById("myTime").autofocus;

x的结果将是:

true
试一试»

定义和用法

自动对焦属性设置或返回是否时间字段应该自动获得焦点在页面加载时,还是不行。

该属性反映了HTML自动对焦属性。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

自动对焦属性在所有主流浏览器的支持。

注:在Internet Explorer 9和早期版本或在Opera 12和早期版本是不支持自动对焦性能。

注: <input type="time">元素不在Internet Explorer或Firefox的支持。


句法

返回自动对焦特性:

timeObject .autofocus

设置自动对焦特性:

timeObject .autofocus=true|false

属性值

Value Description
true|false Specifies whether a time field should get focus when the page loads, or not
  • true - The time field gets focus
  • false - Default. The time field does not get focus

技术细节

返回值: 布尔,返回true,如果时间栏会自动获得焦点在页面加载的时候,否则返回false

相关页面

HTML参考: HTML <input>自动对焦属性


输入时间对象参考 输入时间对象