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

HTML DOM Textarea cols คุณสมบัติ


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

ไวยากรณ์

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

1. โคลสกลับมา

object.cols

2. เติมสี

object.cols = “number”

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

ตัวอย่าง

<!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 cols 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 Cols = 50</button>
<script>
   function set() {
      document.querySelector("textarea").cols = '50';
   }
</script>
</body>
</html>

ผลลัพธ์

HTML DOM Textarea cols คุณสมบัติ

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

HTML DOM Textarea cols คุณสมบัติ