例
有两个表单提交按钮。 第一个提交按钮提交表单数据与默认目标("_self")第二个表单数据提交到一个新的窗口(target="_blank")
<form action="demo_form.asp" method="get">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<button type="submit" >Submit</button>
<button type="submit" formtarget="_blank">Submit to a new
window</button>
</form>
试一试» 定义和用法
该formtarget属性指定在哪里显示递交表格后的反应。 此属性将覆盖表单的target属性。
该formtarget属性仅用于与按钮type="submit" 。
浏览器支持
在表中的数字指定完全支持属性所述第一浏览器的版本。
属性 | |||||
---|---|---|---|---|---|
formtarget | 9 | 10.0 | 4 | 5.1 | 10.6 |
HTML 4.01和HTML5之间的差异
该formtarget属性,HTML5是新的。
注:框架和框架在HTML5不支持。 该_parent,_top和framename值现在大多是iframe使用。
句法
<button type="submit" formtarget="_blank|_self|_parent|_top|framename">
属性值
值 | 描述 |
---|---|
_blank | 在加载一个新窗口/标签响应 |
_self | 装载在同一帧中的反应(这是默认值) |
_parent | 在加载父框架响应 |
_top | 加载在该窗口的全身的响应 |
framename | 在加载一个名为IFRAME响应 |