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


HTML DOM Textarea rows屬性用法及代碼示例


HTML DOM Textarea rows 返回並修改 HTML 文檔中文本區域元素的 rows 屬性值。

用法

以下是語法 -

1. Returning rows

object.rows

2. Adding rows

object.rows = “number”

讓我們看一個 HTML DOM Textarea rows 屬性的例子:

示例

<!DOCTYPE html>
<html>
<style>
   body {
      color:#000;
      background:lightseagreen;
      height:100vh;
   }
   .btn {
      background:#db133a;
      border:none;
      height:2rem;
      border-radius:2px;
      width:40%;
      display:block;
      color:#fff;
      outline:none;
      cursor:pointer;
   }
</style>
<body>
<h1>DOM Textarea rows Property Demo</h1>
<textarea>Hi! I'm a textarea element in an HTML document with some dummy text.</textarea>
<button onclick="set()" class="btn">Set Rows = 8</button>
<script>
   function set() {
      document.querySelector("textarea").rows = '8';
   }
</script>
</body>
</html>

輸出

點擊 ”Set rows = 8” 按鈕將行屬性的值設置為 50。

相關用法


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