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


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