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

จะใช้แอตทริบิวต์ formmethod ใน HTML ได้อย่างไร?


แอตทริบิวต์ formmethod ใช้เพื่อกำหนดเทคนิค HTTP สำหรับการส่งข้อมูลแบบฟอร์ม วิธีนี้ใช้กับประเภทอินพุตส่งรูปภาพ มันแทนที่แอตทริบิวต์ method ของรูปแบบ HTML

จะใช้แอตทริบิวต์ formmethod ใน HTML ได้อย่างไร?

ตัวอย่าง

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

<!DOCTYPE html>
<html>
   <head>
      <title>HTML formmethod attribute</title>
   </head>
   <body>
      <form action=”/new.php” method="get">
         Student Name<br><input type="text" name="name"/><br>
         Student Subject<br><input type="text" name="subject"/><br>
         <input type="submit" value="Submit">
         <input type="submit" formmethod=”post” formaction=”/new2.php” value="Submit">
      </form>
   </body>
</html>