当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。