คุณสมบัติฟอร์มซ่อนอินพุต HTML DOM ส่งคืนการอ้างอิงของฟอร์มที่มีฟิลด์อินพุตที่ซ่อนอยู่ในเอกสาร HTML
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
object.form
ตัวอย่าง
ให้เราดูตัวอย่างของ HTML DOM อินพุตคุณสมบัติแบบฟอร์มที่ซ่อนอยู่ -
<!DOCTYPE html> <html> <head> <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> </head> <body> <h1>form Property Demo</h1> <form id="Form 1"> <fieldset> <legend>Form 1</legend> Here is hidden input field: <input type="hidden" class="hiddenField"> </fieldset> </form> <button onclick="identify()">Identify Hidden Input Field</button> <p class="show"></p> <script> function identify() { var formId = document.querySelector(".hiddenField").form.id; document.querySelector(".show").innerHTML = "Hi! I'm from " + formId; } </script> </body> </html>
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
คลิกที่ “ระบุฟิลด์อินพุตที่ซ่อนอยู่ ” เพื่อระบุรูปแบบที่มีช่องใส่ข้อมูลที่ซ่อนอยู่