คุณสมบัติแบบฟอร์มปุ่มป้อนข้อมูล HTML DOM ส่งกลับการอ้างอิงของแบบฟอร์มที่ล้อมรอบปุ่มป้อนข้อมูล
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
object.form
ตัวอย่าง
ให้เราดูตัวอย่างคุณสมบัติรูปแบบปุ่มอินพุต -
<!DOCTYPE html> <html> <head> <title<HTML DOM form Property</title< <style> body{ text-align:center; } .btn{ display:block; margin:1rem auto; background-color:#db133a; color:#fff; border:1px solid #db133a; padding:0.5rem; border-radius:50px; width:20%; } .show-message{ font-weight:bold; font-size:1.4rem; color:#ffc107; } </style> </head> <body> <h1>form Property Example</h1> <form id="form1"> <fieldset> <legend>Form 1</legend> <input type="button" class="btn" value="button 1"> <input type="button" class="btn" value="button 2"> </fieldset> </form< <form id="form2"> <fieldset> <legend>Form 2</legend> <input type="button" class="btn" value="button 1"> <input type="button" class="btn" value="button 2"> </fieldset> </form> <div class="show-message"></div> <script> var btnArr= document.querySelectorAll(".btn"); var showMessage= document.querySelector(".show-message"); btnArr.forEach((ele)=>{ ele.addEventListener("click",(e)=>{ showMessage.innerHTML=""; if(e.target.form.id === 'form1'){ showMessage.innerHTML="I'm from form 1"; } else { showMessage.innerHTML="I'm from form 2"; } }) }); </script> </body> </html>
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
คลิกที่ “ปุ่ม 1/ปุ่ม 2 ” ของแบบฟอร์ม 1 −
ตอนนี้ คลิกที่ “ปุ่ม 1/ปุ่ม 2 ” ของแบบฟอร์ม 2 −