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


HTML Input DatetimeLocal readOnly用法及代碼示例


Input DatetimeLocal readOnly屬性用於設置或返回datetimeLocal字段是否為隻讀。一旦將字段聲明為隻讀,就不能再對其進行修改。但是,隻讀字段可以被製表,突出顯示,並且可以用於複製文本。 HTML隻讀屬性由Input DatetimeLocal readOnly屬性反映。

用法:

  • 要返回readOnly屬性:
    datetimelocalObject.readOnly
  • 設置readOnly屬性:
    datetimelocalObject.readOnly = true|false

屬性值:


  • true | false:它用於指定datetimeLocal字段是否為隻讀。

以下示例程序旨在說明DatetimeLocal readOnly屬性:
例:將datetimeLocal字段設置為隻讀。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Input DatetimeLocal  
      readOnly Property in HTML 
  </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2> 
      Input DatetimeLocal readOnly Property 
  </h2> 
    <br> Date Of Birth:
    
    <input type="datetime-local"
           id="Test_DatetimeLocal" 
           name="DOB"> 
  
    <p> 
      To set the date time to read-only, 
      double-click the "Set Read-Only" button. 
  </p> 
  
    <button ondblclick="My_DatetimeLocal()"> 
      Set Read-Only 
  </button> 
  
    <script> 
        function My_DatetimeLocal() { 
            document.getElementById( 
              "Test_DatetimeLocal").readOnly =  
              true; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

單擊按鈕後

支持的瀏覽器:

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


相關用法


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