最新的Web開發教程
 

輸入時間disabled屬性

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

禁用時間字段:

document.getElementById("myTime").disabled = true;

其結果可能是:

試一試»

定義和用法

禁用的屬性設置或返回是否時間字段應禁用,還是不行。

禁用的元素是不可用和未點擊。 殘疾人元素在瀏覽器中灰色通常表現為默認。

該屬性反映了HTML disabled屬性。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

禁用的屬性在所有主流瀏覽器的支持。

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


句法

返回disabled屬性:

timeObject .disabled

設置disabled屬性:

timeObject .disabled=true|false

屬性值

Value Description
true|false Specifies whether a time field should be disabled, or not
  • true - The time field is disabled
  • false - Default. The time field is not disabled

技術細節

返回值: 布爾,如果時間字段被禁用返回true,否則返回false

更多示例

查找出來,如果時間字段被禁用與否:

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

x的結果將是:

true
試一試»

禁用和undisable時間字段:

function disableBtn() {
    document.getElementById("myTime").disabled = true;
}

function undisableBtn() {
    document.getElementById("myTime").disabled = false;
}
試一試»

相關頁面

HTML參考: HTML <input> disabled屬性


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