formaction屬性指定提交表單時(shí)將表單數(shù)據(jù)發(fā)送到的位置。此屬性將覆蓋表單的action屬性。formaction屬性僅用于類型為“ submit”的按鈕。
具有兩個(gè)提交按鈕的表單,第一個(gè)提交按鈕將表單數(shù)據(jù)提交到“ action_page.php”,第二個(gè)提交到“ action_page2.php”:
<!DOCTYPE html> <html> <head> <title>HTML:<button> formaction 屬性 - 菜鳥教程 (cainiaoplus.com)</title> <body> <form action="/run/action_page.php" method="get"> First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br> <button type="submit">Submit</button><br> <button type="submit" formaction="/run/action_page2.php">Submit to another page</button> </form> </body> </html>測試看看 ?/?
IEFirefoxOperaChromeSafari
Internet Explorer 10, Firefox, Opera, Chrome, 和 Safari 支持 formaction 屬性。
注意: Internet Explorer 9 及更早IE版本不支持 formaction 屬性。
formaction屬性指定提交表單時(shí)將表單數(shù)據(jù)發(fā)送到的位置。此屬性將覆蓋表單的 action 屬性。
formaction屬性僅用于類型為“ submit”的按鈕。
該屬性與 type="submit" 配合使用。
formaction 屬性是 HTML 5 中的新屬性。
<button type="submit" formaction="URL">
值 | 描述 |
---|---|
URL | 規(guī)定將表單數(shù)據(jù)發(fā)送到的地址。 可能值:
|