แอตทริบิวต์ name ขององค์ประกอบ
ต่อไปนี้เป็นไวยากรณ์ -
<button name="btn_name">
ด้านบน btn_name คือชื่อของปุ่ม ให้เราดูตัวอย่างการใช้แอตทริบิวต์ชื่อหากองค์ประกอบ
ตัวอย่าง
<!DOCTYPE html> <html> <body> <form action="" method="get"> Get the details of the employee:<br><br> <button name="details" type="submit" value="addr">Address</button> <button name="details" type="submit" value="ph">Phone</button> <button name="details" type="submit" value="appraisal">Appraisal %</button> </form> </body> </html>
ผลลัพธ์
ในตัวอย่างข้างต้น ค่าต่างๆ จะถูกส่งต่อแม้ว่าชื่อของปุ่มจะเหมือนกัน นั่นคือ "รายละเอียด" ตั้งเป็นชื่อปุ่ม
<button name="details" type="submit" value="addr">Address</button> <button name="details" type="submit" value="ph">Phone</button> <button name="details" type="submit" value="appraisal">Appraisal %</button>