欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML <form> 標簽的 target 屬性

定義和用法

target 屬性規(guī)定在何處打開 action URL。

實例

在下面的例子中,在 action 屬性中規(guī)定的頁面會在新窗口中打開:

<form action="form_action.asp" method="get" target="_blank">
  <p>First name: <input type="text" name="fname" /></p>
  <p>Last name: <input type="text" name="lname" /></p>
  <input type="submit" value="Submit" />
</form>

TIY

兼容性注釋

在 HTML 4.01 中,不贊成使用 form 元素的 target 屬性;在 XHTML 1.0 Strict DTD 中,不支持該屬性。

語法

<form target="value">

屬性值

描述
_blank 在新窗口中打開。
_self 默認。在相同的框架中打開。
_parent 在父框架集中打開。
_top 在整個窗口中打開。
framename 在指定的框架中打開。