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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。