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


HTML Input Datetime readOnly用法及代碼示例


Input Datetime readOnly屬性用於設置或返回datetime字段是否為隻讀。隻讀字段可以選項卡式顯示,突出顯示,並且可以用於複製文本,但不能進行進一步修改。 HTML隻讀屬性由Input Datetime readOnly屬性反映。

用法:

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

屬性值


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

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

將日期時間字段設置為隻讀。

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

輸出:

單擊按鈕後

支持的網頁瀏覽器

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


相關用法


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