當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML Input Datetime disabled用法及代碼示例


輸入日期時間禁用屬性用於設置或返回是否應禁用日期時間字段。元素變得不可用,如果禁用,則變為un-clickable。這些元素通常由瀏覽器顯示為灰色。 HTML禁用屬性由Datetime禁用屬性反映。

用法:
返回禁用的屬性:

datetimeObject.disabled

設置禁用的屬性:


datetimeObject.disabled = true|false

屬性值:

  • true | false:它用於指定是否應禁用日期時間字段。

以下示例程序旨在說明禁用Datetime的屬性:
例:禁用日期時間字段。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>Input Datetime disabled Property in HTML 
  </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2> Input Datetime disabled Property </h2> 
    <br> 
  
    <input type="datetime"
           id="test_Datetime"> 
  
    <p>To disable the datetime field, 
      double click the "Disable" button.</p> 
  
    <button ondblclick="My_Datetime()"> 
      Disable 
  </button> 
  
    <script> 
        function My_Datetime() { 
            
            // Set disabled=true. 
            document.getElementById( 
              "test_Datetime").disabled = true; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

原來:

在單擊禁用按鈕之前:

單擊禁用按鈕後:

支持的瀏覽器:

  • 蘋果Safari
  • IE瀏覽器
  • Firefox
  • 穀歌瀏覽器
  • Opera


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Input Datetime disabled Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。