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


HTML Input Text readOnly用法及代码示例


HTML DOM中的Input Text readOnly属性用于设置或返回文本字段是否应为只读。这意味着用户无法修改或更改特定元素中已经存在的内容(但是,用户可以对其进行制表,突出显示并从中复制文本),而JavaScript可用于更改只读值,并使输入字段可编辑。

用法:

  • 它返回readOnly属性。
    textObject.readOnly
  • 它用于设置readOnly属性。
    textObject.readOnly = true|false

属性值:它接受下面列出的两个值:


  • true:它定义了文本字段是只读的。
  • false:它定义了文本字段不是只读的。

返回值:它返回一个布尔值,表示文本字段是只读还是不可读。

范例1:本示例说明了如何返回输入文本的readOnly属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Text required Property 
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1>GeeksForGeeks</h1>  
  
    <h2>DOM Input Text readOnly Property</h2>  
      
    <form id="myGeeks"> 
        <input type="text" id="text_id" readonly>  
    </form><br> 
      
    <button onclick="myGeeks()">Click Here!</button>  
      
    <p id="GFG" style="font-size:25px;"></p>  
      
    <!-- script to return the readOnly Property-->
    <script>  
        function myGeeks() {  
            var txt = document.getElementById("text_id").readOnly;  
            document.getElementById("GFG").innerHTML = txt;  
        }  
    </script>  
</body>  
  
</html>                    

输出:
单击按钮之前:

单击按钮后:

范例2:本示例说明如何设置输入文本的readOnly属性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input Text required Property 
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1>GeeksForGeeks</h1>  
  
    <h2>DOM Input Text readOnly Property</h2>  
      
    <form id="myGeeks"> 
        <input type="text" id="text_id" readonly>  
    </form><br> 
      
    <button onclick="myGeeks()">Click Here!</button>  
      
    <p id="GFG" style="font-size:25px;"></p>  
      
    <!-- script to set the readOnly Property-->
    <script>  
        function myGeeks() {  
            var txt = document.getElementById("text_id").readOnly 
                    = false;  
                      
            document.getElementById("GFG").innerHTML = txt;  
        }  
    </script>  
</body>  
  
</html>                    

输出:
单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM Input Text readOnly属性支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • Safari


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Text readOnly Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。