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


HTML Textarea rows用法及代碼示例


DOM Textarea行屬性用於設置或返回textarea字段的rows屬性的值。 rows屬性指定控件的可見文本行數,即要顯示的行數。

用法:

  • 它用於返回rows屬性:
    textareaObject.rows
  • 它用於設置行屬性:
    textareaObject.rows = number

屬性值:


  • number:它在textarea字段中指定可見的行數。

返回值:它返回一個數字值,該值表示包含字符的textarea字段的高度。

示例1:HTML程序說明設置DOM Textarea行屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Textarea rows Property</title> 
    <style> 
        h1, 
        h2 { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body style="text-align:center;"> 
    <h1 style="color:green;">  
            GeeksforGeeks  
        </h1> 
  
    <h2>  
            DOM Textarea rows Property  
        </h2> 
  
    <!-- Below id assigned to Textarea Element -->
    <textarea id="GFG" rows="5" cols="23"> 
        This paragraph has number of rows equal to 5. 
    </textarea> 
    <br> 
    
    <button type="button" 
            onclick="myGeeks()"> 
      Submit 
    </button> 
  
    <script> 
        function myGeeks() { 
            
         // Access textarea element. 
          document.getElementById("GFG").rows =  
              "10"; 
        } 
    </script> 
</body> 
  
</html>

輸出:

在單擊按鈕之前:

單擊按鈕後:

示例2:HTML程序說明了返回DOM Textarea行屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Textarea rows Property</title> 
    <style> 
        h1, 
        h2 { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body style="text-align:center;"> 
    <h1 style="color:green;">  
            GeeksforGeeks  
        </h1> 
  
    <h2>  
            DOM Textarea rows Property  
        </h2> 
  
    <!-- Below id assigned to Textarea Element -->
    <textarea id="GFG" rows="5" cols="23"> 
        This paragraph has number of rows equal to 5. 
    </textarea> 
    <br> 
    <button type="button" onclick="myGeeks()">Submit</button> 
    <p id="sudo"></p> 
    <script> 
        function myGeeks() { 
            
            // Return number of rows in the textare. 
            var x = document.getElementById("GFG").rows; 
            document.getElementById("sudo").innerHTML =  
              "There are" + x + " rows in a Textarea height."; 
        } 
    </script> 
</body> 
  
</html>

輸出:

在單擊按鈕之前:

單擊按鈕後:

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

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


相關用法


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