在 HTML 中,formaction 属性是用于 <button> 元素的属性之一。这个属性用于指定当按钮被点击时,将提交表单到的服务器端脚本的 URL。

以下是一个示例:
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Button formaction Attribute Example</title>
</head>
<body>

  <form action="process.php" method="post">
    <label for="username">Username:</label>
    <input type="text" id="username" name="username">
    <br>
    <label for="password">Password:</label>
    <input type="password" id="password" name="password">
    <br>
    
    <!-- 使用 formaction 指定提交表单时的处理 URL -->
    <button type="submit" formaction="custom_process.php">Submit</button>
  </form>

</body>
</html>

在这个例子中,<button> 元素包含了 formaction 属性,指定了在按钮被点击时提交表单到的处理脚本的 URL,而不使用 <form> 元素中的默认 action 属性。这可以使不同按钮提交表单到不同的处理脚本。

请注意,formaction 属性是 HTML5 中的一个属性,因此在使用时请确保您的文档声明为 HTML5(<!DOCTYPE html>)。


转载请注明出处:http://www.zyzy.cn/article/detail/3962/HTML