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

กำหนดตำแหน่งที่จะส่งแบบฟอร์มข้อมูลเมื่อส่งแบบฟอร์มใน HTML?


ใช้ รูปแบบ แอตทริบิวต์ใน HTML เพื่อกำหนดตำแหน่งที่จะส่งข้อมูลแบบฟอร์มเมื่อส่งแบบฟอร์มใน HTML

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้ formaction แอตทริบิวต์ −

<!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>