如何在 HTML 中使用 formmethod 属性?
formmethod 属性用于定义用于发送表单信息的 HTTP 技术。此方法与输入类型提交图片一起使用。它覆盖了 HTML 表单的 method 属性。
示例
你可以尝试运行以下代码来学习如何在 HTML 中使用 formmethod 属性。
<!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>
广告