最新的Web開發教程
 

需要輸入時間屬性

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

查找出來,如果時間字段必須在提交表單之前填寫:

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

x的結果將是:

true
試一試»

定義和用法

所需的屬性設置或返回是否時間字段必須在提交表單之前填寫。

該屬性反映了HTML所需的屬性。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所需的屬性在所有主流瀏覽器的支持,除了IE 9和早期版本,以及Safari。

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


句法

返回所需的屬性:

timeObject .required

設置所需的屬性:

timeObject .required=true|false

屬性值

Value Description
true|false Specifies whether a time field should be a required part of form submission.
  • true - The time field is a required part of form submission
  • false - Default. The time field is not a required part of form submission

技術細節

返回值: 布爾,如果時間字段是表單提交的必要組成部分返回true,否則返回false

更多示例

設置時間字段是表單提交的必要組成部分:

document.getElementById("myTime").required = true;
試一試»

相關頁面

HTML參考: HTML <input>必需的屬性


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