最新的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>自動對焦屬性


輸入時間對象參考 輸入時間對象