如何在HTML中使用formaction属性?
假设您的表单中有两个提交按钮,并且希望这两个按钮分别工作,则formaction属性起作用。两个按钮都将数据发送到不同的页面。该formaction 属性覆盖表单行动 属性。
注– Internet Explorer 9和更早版本不支持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>
以上是 如何在HTML中使用formaction属性? 的全部内容, 来源链接: utcz.com/z/315954.html