Target Attribute | Internet Development Index |
Defines a frame or window that a URL is displayed in. Read/write String.
Applies To
Shape
Tag Syntax
<v:element target="expression">
Remarks
The Target attribute is similar to the standard HTML Target attribute of anchors.
Values include:
| Value | Description |
| TargetName | String containing the name of the frame or window in which to load the document. |
| _blank | Specifies that the linked document is loaded into a new blank window. This window is not named. |
| _media | Specifies that the linked document is loaded into the Media Bar. Available in Microsoft® Internet Explorer 6 or later. |
| _parent | Specifies that the linked document is loaded into the immediate parent of the document containing the link. |
| _search | Specifies that the linked document is loaded into the browser's search pane. Available in Microsoft Internet Explorer 5 or greater. |
| _self | Specifies that the linked document is loaded into the window in which the link was clicked (the active window). |
| _top | Specifies that the linked document is loaded into the topmost window. |
简单的说:
_blank -- 在新窗口中打开链接
_parent -- 在父窗体中打开链接
_self -- 在当前窗体打开链接,此为默认值
_top -- 在当前窗体打开链接,并替换当前的整个窗体(框架页)
本文详细解释了网页链接中的目标属性及其作用,包括如何使用不同的值如_self、_blank、_parent、_top等来控制链接加载的位置。
804

被折叠的 条评论
为什么被折叠?



