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


HTML Textarea disabled用法及代碼示例


DOM Textarea禁用屬性用於設置或返回是否禁用textarea元素。禁用的文本區域為un-clickable且不可用。它是一個布爾屬性,用於反映HTML Disabled屬性。

用法:

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

屬性值:


  • true:它定義了textarea被禁用。
  • False:它具有默認值。它定義了textarea未被禁用。

返回值:它返回一個布爾值,表示是否禁用了textarea。

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM textarea disabled Property</title> 
</head> 
  
<body style="text-align:center"> 
    <h1 style="color:green;"> 
      GeeksforGeeks 
  </h1> 
    <h2>DOM textarea disabled Property</h2> 
  
    <p>This text area is non editable.</p> 
  
    <!-- Assigning id to textarea. -->
    <textarea id="GFG" disabled> 
        This textarea field is disabled. 
    </textarea> 
    <br> 
    
    <button onclick="myGeeks()">Submit</button> 
  
    <script> 
        function myGeeks() { 
            
          // Set the textarea property. 
          document.getElementById( 
           "GFG").disabled = false; 
        } 
    </script> 
</body> 
  
</html>

輸出:

在單擊按鈕之前:

單擊按鈕後:

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM textarea disabled Property</title> 
</head> 
  
<body style="text-align:center"> 
    
    <h1 style="color:green;">GeeksforGeeks</h1> 
    <h2>DOM textarea disabled Property</h2> 
  
    <p>This text area is non editable.</p> 
  
    <!-- Assigning id to textarea. -->
    <textarea id="GFG" disabled> 
        This textarea field is disabled. 
    </textarea> 
    <br> 
    
    <button onclick="myGeeks()">Submit</button> 
    
    <p id="sudo"></p> 
    
    <script> 
        function myGeeks() { 
            //  Return Boolean value to represent textarea.  
            var x = document.getElementById("GFG").disabled; 
            document.getElementById("sudo").innerHTML = x; 
        } 
    </script> 
</body> 
  
</html>

輸出:

在單擊按鈕之前:

單擊按鈕後:

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

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


相關用法


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