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


HTML Textarea readOnly用法及代碼示例


DOM Textarea readOnly屬性用於設置或返回textarea中的文本是否應為readOnly。如果它是re​​adOnly,則內容無法修改,但可以複製。

用法:

  • 它用於返回readOnly屬性。
    textareaObject.readOnly
  • 它用於設置readOnly屬性。
    textareaObject.readOnly = true|false

屬性值:


  • true:它定義了文本區域為readOnly。
  • false:它定義了文本區域不是隻讀的,可以更改的。

返回值:它以布爾值的形式返回readOnly屬性的值,即true或false。

示例1:本示例說明了如何設置Textarea隻讀屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM textarea readonly Property</title> 
</head> 
  
<body style="text-align:center"> 
    <h1 style="color:green;"> 
      GeeksforGeeks 
  </h1> 
    <h2>DOM textarea readonly Property</h2> 
  
  
    <!-- Assigning id to textarea. -->
    <textarea id="GFG_ID" rows="3" cols="10" name="Geeks" > 
This text is wrapped in the text area field. 
    </textarea> 
    <br> 
    
    <button onclick="myGeeks()">Submit</button> 
    <p id = "GFG" > </p> 
    <script> 
        function myGeeks() {    
          // Set the readOnly property. 
          var x =  
           document.getElementById( 
           "GFG_ID").readOnly = true; 
  
          document.getElementById("GFG").innerHTML =  
           "The value is set to " + x; 
        } 
    </script> 
</body> 
  
</html>

輸出:
在點擊按鈕之前:

單擊按鈕後:

示例2:本示例說明了如何返回Textarea readOnly屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM textarea readOnly Property</title> 
</head> 
  
<body style="text-align:center"> 
    
    <h1 style="color:green;">GeeksforGeeks</h1> 
    <h2>DOM textarea readonly Property</h2> 
  
    <!-- Assigning id to textarea. -->
    <textarea id="GFG_ID" rows="3" cols="10" name="Geeks" readonly> 
This text in the text area field is readOnly. 
    </textarea> 
    <br> 
    
    <button onclick="myGeeks()">Submit</button> 
    
    <p id="sudo"></p> 
    
    <!-- Return the value of the readOnly property -->
    <script> 
        function myGeeks() { 
  
            var x =  
            document.getElementById( 
            "GFG_ID").readOnly; 
  
            document.getElementById("sudo").innerHTML = x; 
        } 
    </script> 
</body> 
  
</html>

輸出:

在點擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了Textarea readOnly屬性支持的瀏覽器:

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


相關用法


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