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


HTML Textarea required用法及代码示例


DOM Textarea required属性用于设置或返回在提交表单之前是否必须填写输入元素。此属性用于反映HTML必需属性。

用法:

  • 它用于返回所需的属性:
    textareaObject.required
  • 它用于设置必需的属性:
    textareaObject.required = true|false

属性值


  • true:它指定在提交表单之前必须填写textarea字段。
  • false:它具有默认值。它指定textarea字段不是表单的必需部分。

返回值:它返回一个布尔值,该值表示在提交表单之前必须填写textarea字段。

示例1:在HTML程序中说明了如何返回所需的属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM required textarea Property</title> 
    <style> 
        h1, 
        h2 { 
            color:green; 
            font-style:italic; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksForGeeks</h1> 
    <h2>DOM required textarea Property</h2> 
    
    <form action="/action_page.php"> 
        <textarea id="GFG"
                  rows="7" 
                  cols="50" 
                  name="comment"
                  required> 
        </textarea> 
        
        <input type="submit"> 
    </form> 
    <br> 
    <br> 
    
    <button onclick="myGeeks()"> 
      Try it 
    </button> 
  
    <p id="sudo"></p> 
    <script> 
        function myGeeks() { 
            
            // Return Textarea property 
            var x =  
            document.getElementById("GFG").required; 
            
            document.getElementById("sudo").innerHTML =  
              x; 
        } 
    </script> 
</body> 
  
</html>

输出:

在单击Tryit按钮之前:

单击Tryit按钮后:

示例2:在HTML程序中说明了如何设置所需的属性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM required textarea Property</title> 
    <style> 
        h1, 
        h2 { 
            color:green; 
            font-style:italic; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksForGeeks</h1> 
    <h2>DOM required textarea Property</h2> 
    
    <form action="/action_page.php"> 
        <textarea id="GFG"
                  rows="7"
                  cols="50"
                  name="comment"> 
        </textarea> 
        
    <input type="submit"> 
    </form> 
    <br> 
    <br> 
    <button onclick="myGeeks()"> 
      Try it 
    </button> 
  
    <p id="sudo"></p> 
    <script> 
        function myGeeks() { 
            
           // Set Textarea property. 
           var x =  
           document.getElementById("GFG").required =  
            true; 
            
            document.getElementById("sudo").innerHTML = 
             "Now the value of required attribute is set to True"; 
        } 
    </script> 
</body> 
  
</html>

输出:

在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了Textarea必需属性支持的浏览器:

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


相关用法


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