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

แบบฟอร์ม HTML DOM Textarea คุณสมบัติ


คุณสมบัติแบบฟอร์ม HTML DOM Textarea ส่งคืนค่าการอ้างอิงของแบบฟอร์มที่ล้อมรอบพื้นที่ข้อความ

ไวยากรณ์

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

object.form

ให้เรามาดูตัวอย่าง HTML DOM Textarea form Property:

ตัวอย่าง

<!DOCTYPE html>
<html>
<style>
   body {
      text-align: center;
      background-color: #363946;
      color: #fff;
   }
   form {
      margin: 2.5rem auto;
   }
   button {
      background-color: #db133a;
      border: none;
      cursor: pointer;
      padding: 8px 16px;
      color: #fff;
      border-radius: 5px;
      font-size: 1.05rem;
   }
   .show {
      font-weight: bold;
      font-size: 1.4rem;
   }
</style>
<body>
<h1>DOM Textarea form Property Demo</h1>
<form id="Form 1">
<fieldset>
<legend>Form 1</legend>
<textarea rows="5" cols="20">Hi! I'm a text area element with some dummy text.</textarea>
</fieldset>
</form>
<button onclick="identify()">Identify Textarea Form</button>
<p class="show"></p>
<script>
   function identify() {
      var formId = document.querySelector("textarea").form.id;
      document.querySelector(".show").innerHTML = "Hi! I'm from " + formId;
   }
</script>
</body>
</html>

ผลลัพธ์

แบบฟอร์ม HTML DOM Textarea คุณสมบัติ

คลิกที่ “ระบุแบบฟอร์มข้อความ ” เพื่อระบุรูปแบบที่มีองค์ประกอบ textarea

แบบฟอร์ม HTML DOM Textarea คุณสมบัติ