如何在 HTML 中使用 formmethod 属性?
formmethod 属性用于定义用于发送表单信息的方法。此方法用于类型为“提交”的输入图片。它会覆盖 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>
广告