Input Time autofocus 屬性
實(shí)例
查看 time 字段是否在頁面加載后自動(dòng)獲取焦點(diǎn):
var x = document.getElementById("myTime").autofocus;
x輸出結(jié)果為:
true
嘗試一下 ?
定義和用法
autofocus 屬性用于設(shè)置或者返回 time 字段在頁面加載后是否自動(dòng)獲取焦點(diǎn)。
屬性反映了 HTML autofocus 屬性。
瀏覽器支持
所有主流瀏覽器都支持 autofocus 屬性
注意: Internet Explorer 9 及更早 IE 版本或者 Opera 12 或更早 Opera 版本瀏覽器不支持 autofocus 屬性。
注意: Internet Explorer 或 Firefox 瀏覽器不支持使用 type="time" 屬性的 HTML <input> 元素。
語法
返回 autofocus 屬性:
timeObject.autofocus
設(shè)置 autofocus 屬性:
timeObject.autofocus=true|false
屬性值
值 | 描述 |
---|---|
true|false |
描述了 time 字段在頁面加載后是否獲取焦點(diǎn)
|
技術(shù)細(xì)節(jié)
返回值: | 布爾值,如果頁面在加載后 time 字段自動(dòng)獲取焦點(diǎn)返回 true,否則返回false。 |
---|
相關(guān)頁面
HTML 參考手冊(cè): HTML <input> autofocus 屬性
Input Time 對(duì)象
更多建議: