1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
---
title: target
slug: Web/SVG/Attribute/target
translation_of: Web/SVG/Attribute/target
---
<div>{{SVGRef}}</div>
<p><code><strong>target</strong></code>当结束资源有多个可能的目标时,例如,当父文档嵌入在HTML或XHTML文档中或使用选项卡式浏览器查看时,应使用该属性。此属性指定激活链接时要在其中打开文档的浏览上下文的名称(例如,浏览器选项卡或(X)HTML iframe或object元素):</p>
<p>只有一个元素正在使用此属性:{{SVGElement("a")}}</p>
<div id="topExample">
<div class="hidden">
<pre class="brush: css">html, body, svg {
height: 100%;
}
text {
font: 20px Arial, Helvetica, sans-serif;
fill: blue;
text-decoration: underline;
}
</pre>
</div>
<pre class="brush: html; highlight[2,5,8]"><svg viewBox="0 0 300 120" xmlns="http://www.w3.org/2000/svg">
<a href="https://developer.mozilla.org" target="_self">
<text x="0" y="20">在iframe中打开链接</text>
</a>
<a href="https://developer.mozilla.org" target="_blank">
<text x="0" y="60">在新标签页或窗口中打开链接</text>
</a>
<a href="https://developer.mozilla.org" target="_top">
<text x="0" y="100">在此标签或窗口中打开链接</text>
</a>
</svg>
</pre>
<p>{{EmbedLiveSample("topExample", "300", "120")}}</p>
</div>
<h2 id="使用说明">使用说明</h2>
<table class="properties">
<tbody>
<tr>
<th scope="row">值</th>
<td><code>_self</code>| <code>_parent</code>| <code>_top</code>| <code>_blank</code>|<code><XML-Name></code></td>
</tr>
<tr>
<th scope="row">默认值</th>
<td><code>_self</code></td>
</tr>
<tr>
<th scope="row">可动画的</th>
<td>是</td>
</tr>
</tbody>
</table>
<dl>
<dt><code>_replace</code> {{deprecated_inline}}</dt>
<dd>
<p>当前SVG图像被与当前SVG图像在同一帧中相同矩形区域中的链接内容替换。</p>
<div class="blockIndicator note">
<p><strong>注意:</strong>这个值是从来没有很好的执行,之间的区别<code><span class="attr-value">_replace</span></code>,并<code><span class="attr-value">_self</span></code>已通过在浏览上下文的HTML定义的变化变得多余。使用<code><span class="attr-value">_self</span></code>以取代目前的SVG文件。</p>
</div>
</dd>
<dt><code>_self</code></dt>
<dd>在与当前SVG图像相同的浏览上下文中,当前SVG图像被链接的内容替换。</dd>
<dt><code>_parent</code></dt>
<dd>SVG图像的直接父浏览上下文将被链接的内容替换(如果存在),并且可以从此文档中安全地访问它。</dd>
<dt><code>_top</code></dt>
<dd>完整活动窗口或选项卡的内容将由链接的内容替换(如果存在),并且可以从此文档中安全地访问</dd>
<dt><code>_blank</code></dt>
<dd>如果此文档可以安全地显示,则需要一个新的未命名窗口或标签来显示链接的内容。如果用户代理不支持多个窗口/选项卡,则结果与_top相同。</dd>
<dt><code><XML-Name></code></dt>
<dd>指定用于显示链接内容的浏览上下文的名称(选项卡,内联框架,对象等)。如果具有该名称的上下文已经存在,并且可以从此文档中安全地访问,则可以重新使用该上下文,替换现有内容。如果不存在,则创建它(与'_blank'相同,但现在有了一个名称)。该名称必须是有效的XML名称[XML11],并且不能以下划线(U + 005F LOW LINE字符)开头,以满足来自HTML的有效浏览上下文名称的要求。</dd>
</dl>
<h2 id="技术指标">技术指标</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">规格</th>
<th scope="col">状态</th>
<th scope="col">评论</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("SVG2", "linking.html#AElementTargetAttribute", "target")}}</td>
<td>{{Spec2("SVG2")}}</td>
<td>删除<code>_replace</code>值。</td>
</tr>
<tr>
<td>{{SpecName("SVG1.1", "linking.html#AElementTargetAttribute", "target")}}</td>
<td>{{Spec2("SVG1.1")}}</td>
<td>初始定义</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<div class="hidden">此页面上的兼容性表是根据结构化数据生成的。如果您想贡献数据,请查看<a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>并向我们发送请求请求。</div>
<p>{{Compat("svg.elements.a.target")}}</p>
|