aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/html/element/base/index.html
blob: f0e84d8e82cf7aa90bbd45b0b17a071d58f28d71 (plain)
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
---
title: <base>:文档根 URL 元素
slug: Web/HTML/Element/base
tags:
  - HTML
  - 元素
  - 文档
translation_of: Web/HTML/Element/base
---
<div>{{HTMLRef}}</div>

<p><strong>HTML &lt;base&gt; 元素</strong> 指定用于一个文档中包含的所有相对 URL 的根 URL。一份中只能有一个 &lt;base&gt; 元素。</p>

<p>一个文档的基本 URL,可以通过使用 {{domxref('document.baseURI')}} 的 JS 脚本查询。如果文档不包含 <code>&lt;base&gt;</code> 元素,<code>baseURI</code> 默认为 <code>{{domxref("document.location.href")}}</code></p>

<table class="properties">
 <tbody>
  <tr>
   <th><a href="/zh-CN/docs/Web/HTML/Content_categories">内容类别</a></th>
   <td>元数据内容。</td>
  </tr>
  <tr>
   <th>合法的内容</th>
   <td>无,它是一个{{Glossary("empty element")}}</td>
  </tr>
  <tr>
   <th><dfn>标签省略</dfn></th>
   <td>该标签不能有结束标签。</td>
  </tr>
  <tr>
   <th>合法的父级</th>
   <td>任何不带有任何其他 {{HTMLElement("base")}} 元素的{{HTMLElement("head")}} 元素</td>
  </tr>
  <tr>
   <th>合法的 ARIA 角色</th>
   <td></td>
  </tr>
  <tr>
   <th>DOM 接口</th>
   <td>{{domxref("HTMLBaseElement")}}</td>
  </tr>
 </tbody>
</table>

<h2 id="属性">属性</h2>

<p>该标签包含<a href="/zh-CN/docs/HTML/Global_attributes">全局属性</a></p>

<p>如果指定了以下任一属性,这个元素<strong>必须</strong>在其他任何属性是 URL 的元素之前。例如:<code>{{HTMLElement("link")}}</code><code>href</code> 属性。</p>

<dl>
 <dt>{{htmlattrdef("href")}}</dt>
 <dd>用于文档中相对 URL 地址的基础 URL。允许绝对和相对 URL。</dd>
 <dt>{{htmlattrdef("target")}}</dt>
 <dd>默认浏览上下文的关键字或作者定义的名称,当没有明确目标的链接 <code>{{HTMLElement("a")}}</code> 或表单 <code>{{HTMLElement("form")}}</code> 导致导航被激活时显示其结果。该属性值定位到<em>浏览上下文</em>(例如选项卡,窗口或内联框 <code>{{HTMLElement("iframe")}}</code> )。</dd>
 <dd>以下的关键字指定特殊的意思:
 <ul>
  <li><code>_self</code>: 载入结果到当前浏览上下文中。(该值是元素的默认值)。</li>
  <li><code>_blank</code>: 载入结果到一个新的未命名的浏览上下文。</li>
  <li><code>_parent</code>: 载入结果到父级浏览上下文(如果当前页是内联框)。如果没有父级结构,该选项的行为和<code>_self</code>一样。</li>
  <li><code>_top</code>: 载入结果到顶级浏览上下文(该浏览上下文是当前上下文的最顶级上下文)。如果没有父级,该选项的行为和_self 一样。</li>
 </ul>
 </dd>
</dl>

<h2 id="使用说明">使用说明</h2>

<h3 id="多个_&lt;base>_元素">多个 <code>&lt;base&gt;</code> 元素</h3>

<p>如果指定了多个 <code>&lt;base&gt;</code> 元素,只会使用第一个 <code>href </code><code>target </code>值,其余都会被忽略。</p>

<h3 id="页内锚">页内锚</h3>

<p>指向文档中某个片段的链接,例如 <code>&lt;a href="#some-id"&gt;</code><code>&lt;base&gt;</code> 解析,触发对带有附加片段的基本 URL 的 HTTP 请求。</p>

<p>例如:给定 <code>&lt;base href="https://example.com"&gt;</code></p>

<p>以及此链接 <code>&lt;a href="#anchor"&gt;Anker&lt;/a&gt;</code></p>

<p>链接指向 <code>https://example.com/#anchor</code></p>

<h3 id="Open_Graph">Open Graph</h3>

<p><a href="https://ogp.me">Open Graph</a> 标签不接受 <code>&lt;base&gt;</code>,并且应该始终具有完整的绝对 URL。例如:</p>

<pre><code>&lt;meta property="og:image" content="https://example.com/thumbnail.jpg"&gt;</code></pre>

<h2 id="示例">示例</h2>

<pre class="brush: html">&lt;base href="http://www.example.com/"&gt;
&lt;base target="_blank"&gt;
&lt;base target="_top" href="http://www.example.com/"&gt;
</pre>

<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('HTML WHATWG', 'semantics.html#the-base-element', '&lt;base&gt;')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td>上次快照之后没有变化。</td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5 W3C', 'document-metadata#the-base-element', '&lt;base&gt;')}}</td>
   <td>{{Spec2('HTML5 W3C')}}</td>
   <td><font face="Arial, x-locale-body, sans-serif"><span style="background-color: rgba(212, 221, 228, 0.14902);">指定 </span></font><code>target</code> 的行为</td>
  </tr>
  <tr>
   <td>{{SpecName('HTML4.01', 'struct/links.html#h-12.4', '&lt;base&gt;')}}</td>
   <td>{{Spec2('HTML4.01')}}</td>
   <td>添加 <code>target</code>  属性</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

<p>{{Compat("html.elements.base")}}</p>