formtarget 屬性指定在提交表單后在哪里顯示響應(yīng)。 formtarget 屬性覆蓋表單元素的 target 屬性,該屬性與 type="submit" 配合使用。
具有兩個提交按鈕的表單。第一個提交按鈕提交具有默認目標(“ _self”)的表單數(shù)據(jù),第二個提交按鈕將表單數(shù)據(jù)提交到新窗口(target =“ _ blank”):
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML <button> formtarget 屬性使用-菜鳥教程(cainiaoplus.com)</title> </head> <body> <form action="action_page.php" method="get"> First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br> <button type="submit" >提交</button> <button type="submit" formtarget="_blank">提交到新窗口</button> </form> </body> </html>測試看看 ?/?
IEFirefoxOperaChromeSafari
Internet Explorer 10, Firefox, Opera, Chrome, 和 Safari 支持 formtarget 屬性。
注意: Internet Explorer 9 及更早IE版本不支持 formtarget 屬性。
formtarget 屬性指定在提交表單后在哪里顯示響應(yīng)。 formtarget 屬性覆蓋表單元素的 target 屬性。
該屬性與 type="submit" 配合使用。
formtarget 屬性是 HTML 5 中的新屬性。
注意:HTML5不支持框架和框架集。_parent,_top和framename值現(xiàn)在主要用于iframe。
<button type="submit" formtarget="_blank|_self|_parent|_top|framename">
值 | 描述 |
---|---|
_blank | 在新窗口/選項卡中將表單提交到文檔。 |
_self | 在同一框架中將表單提交到文檔。(默認) |
_parent | 在父框架中將表單提交到文檔。 |
_top | 在整個窗口中將表單提交到文檔。 |
framename | 在指定的框架中將表單提交到文檔。 |