HTML <button> formaction 属性
实例
带有两个提交按钮的表单(带有不同的 action),第一个提交按钮将表单数据提交到 "action_page.php", 第二个提交按钮将表单数据提交到 "action_page2.php":
<form action="/action_page.php" method="get">
<label for="fname">First name:</label>
<input type="text" id="fname"
name="fname"><br><br>
<label for="lname">Last name:</label>
<input type="text" id="lname" name="lname"><br><br>
<button
type="submit">Submit</button>
<button type="submit" formaction="/action_page2.php">Submit to another page</button>
</form>
亲自试一试 »
定义和用法
formaction 属性指定提交表单时将表单数据发送到哪里。此属性覆盖表单的 action 属性。
该属性与 type="submit" 配合使用。
浏览器支持
表中的数字表示支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
formaction | 9.0 | 10.0 | 4.0 | 5.1 | 15.0 |
语法
<button type="submit" formaction="URL">
属性值
值 | 描述 |
---|---|
URL | 规定将表单数据发送到的地址。 可能的值:
|
❮ HTML <button> 标签