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


HTML Input Date readOnly用法及代碼示例


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

用法:

  • 要返回readOnly屬性:
    inputdateObject.readOnly
  • 對於設置readOnly屬性:
    inputdateObject.readOnly = true|false

屬性值:


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

以下示例程序旨在說明Date readOnly屬性:

將日期字段設置為隻讀。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>Input Date 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 Date readOnly Property</h2> 
    <br> Date Of Birth:
    <input type="date" id="Test_Date" name="DOB"> 
  
    <p>To set the date to read-only,  
      double-click the "Set Read-Only" button.</p> 
  
    <button ondblclick="My_Date()">Set Read-Only</button> 
  
    <p id="test"></p> 
  
    <script> 
        function My_Date() { 
            document.getElementById("Test_Date").readOnly = true; 
        } 
    </script> 
  
</body> 
  
</html>                                        

輸出:

單擊按鈕後:

支持的Web瀏覽器:

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


相關用法


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