Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML DOM Textarea แถว คุณสมบัติ


แถว HTML DOM Textarea ส่งคืนและแก้ไขค่าของแอตทริบิวต์ rows ขององค์ประกอบพื้นที่ข้อความในเอกสาร HTML

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

1. กลับแถว

object.rows

2. การเพิ่มแถว

object.rows = “number”

ให้เราดูตัวอย่างคุณสมบัติแถว HTML DOM Textarea:

ตัวอย่าง

<!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>

ผลลัพธ์

HTML DOM Textarea แถว คุณสมบัติ

คลิกที่ “ตั้งแถว =8 ” เพื่อตั้งค่าแอตทริบิวต์แถวเป็น 50

HTML DOM Textarea แถว คุณสมบัติ