使用HTML中的formaction 属性来设置以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>