แอตทริบิวต์ formaction จะทำงานเมื่อคุณมีปุ่มส่งสองปุ่มในแบบฟอร์ม และต้องการให้ปุ่มทั้งสองทำงานแยกกัน ปุ่มทั้งสองจะส่งข้อมูลไปยังหน้าต่างๆ การก่อตัว แอตทริบิวต์แทนที่แบบฟอร์ม การกระทำ แอตทริบิวต์
หมายเหตุ − การก่อตัว ไม่รองรับแอตทริบิวต์ใน Internet Explorer 9 และเวอร์ชันก่อนหน้า
ตัวอย่าง
คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อเรียนรู้วิธีใช้ formaction แอตทริบิวต์ใน HTML -
<!DOCTYPE html> <html> <head> <title>HTML formaction attribute</title> </head> <body> <form action = "/new1.php" method = "get"> Student name: <input type = "text" name = "name"><br> Student Subject: <input type = "text" name = "subject"><br> <button type = "submit">Submit</button><br> <button type = "submit" formaction = "/new2.php">Another page</button> </form> </body> </html>