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


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