form method属性用于定义用于发送表单信息的HTTP技术。此方法用于输入类型提交图片。它覆盖HTML表单的method属性。
您可以尝试运行以下代码,以了解如何在HTML中使用form method属性。
<!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>