Heim >Web-Frontend >HTML-Tutorial >Das HTML-Tag gibt die Standardadresse oder das Standardziel für alle Links auf der Seite an

Das HTML-Tag gibt die Standardadresse oder das Standardziel für alle Links auf der Seite an

WBOY
WBOYOriginal
2016-09-14 09:24:021903Durchsuche

Definition und Verwendung

Das

-Tag gibt die Standardadresse oder das Standardziel für alle Links auf der Seite an.

Normalerweise füllt der Browser die Lücken in einer relativen URL, indem er die entsprechenden Elemente aus der URL des aktuellen Dokuments extrahiert.

Verwenden Sie das Tag , um dies zu ändern. Der Browser verwendet dann nicht mehr die URL des aktuellen Dokuments, sondern die angegebene Basis-URL, um alle relativen URLs aufzulösen. Dazu gehören URLs in den Tags , , und

.

Das Tag

muss sich im Head-Element befinden.

Optionale Attribute

属性 描述
target
  • _blank
  • _parent
  • _self
  • _top
  • framename
在何处打开页面中所有的链接。

Fall:

<html>
<head>
<<span style="color: #0000ff;">base</span> href=<span style="color: #800000;">"</span><span style="color: #800000;">http://www.w3school.com.cn/i/</span><span style="color: #800000;">"</span> />
<<span style="color: #0000ff;">base</span> target=<span style="color: #800000;">"</span><span style="color: #800000;">_blank</span><span style="color: #800000;">"</span> />
</head>

<body>
<img src=<span style="color: #800000;">"</span><span style="color: #800000;">eg_smile.gif</span><span style="color: #800000;">"</span> /><br />
<p>请注意,我们已经为图像规定了一个相对地址。由于我们已经在 head 部分规定了一个基准 URL,浏览器将在如下地址寻找图片:</p>
<p><span style="color: #800000;">"</span><span style="color: #800000;">http://www.w3school.com.cn/i/eg_smile.gif</span><span style="color: #800000;">"</span></p>

<br /><br />
<p><a href=<span style="color: #800000;">"</span><span style="color: #800000;">http://www.w3school.com.cn</span><span style="color: #800000;">"</span>>W3School</a></p>
<p>请注意,链接会在新窗口中打开,即使链接中没有 target=<span style="color: #800000;">"</span><span style="color: #800000;">_blank</span><span style="color: #800000;">"</span> 属性。这是因为 <span style="color: #0000ff;">base</span> 元素的 target 属性已经被设置为 <span style="color: #800000;">"</span><span style="color: #800000;">_blank</span><span style="color: #800000;">"</span> 了。</p>

</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv=<span style="color: #800000;">"</span><span style="color: #800000;">Content-Type</span><span style="color: #800000;">"</span> content=<span style="color: #800000;">"</span><span style="color: #800000;">text/html; charset=gb2312</span><span style="color: #800000;">"</span> />
<meta http-equiv=<span style="color: #800000;">"</span><span style="color: #800000;">Content-Language</span><span style="color: #800000;">"</span> content=<span style="color: #800000;">"</span><span style="color: #800000;">zh-cn</span><span style="color: #800000;">"</span> />

<<span style="color: #0000ff;">base</span> target=<span style="color: #800000;">"</span><span style="color: #800000;">_blank</span><span style="color: #800000;">"</span> />
</head>

<body>

<p>
<a href=<span style="color: #800000;">"</span><span style="color: #800000;">http://www.w3school.com.cn</span><span style="color: #800000;">"</span> target=<span style="color: #800000;">"</span><span style="color: #800000;">_blank</span><span style="color: #800000;">"</span>>这个连接</a> 将在新窗口中加载,因为 target 属性被设置为 <span style="color: #800000;">"</span><span style="color: #800000;">_blank</span><span style="color: #800000;">"</span><span style="color: #000000;">。
</span></p>

<p>
<a href=<span style="color: #800000;">"</span><span style="color: #800000;">http://www.w3school.com.cn</span><span style="color: #800000;">"</span>>这个连接</a><span style="color: #000000;"> 也将在新窗口中加载,即使没有 target 属性。
</span></p>

</body>
</html>

Basisobjekt

Das Basisobjekt stellt das Basiselement von HTML dar.

Ein Basisobjekt wird jedes Mal erstellt, wenn in einem HTML-Dokument erscheint.

Basisobjekteigenschaften

属性 描述
href 设置或返回针对页面中所有链接的基准 URL。
id 设置或返回 元素的 id。
target 设置或返回针对页面中所有链接的默认目标框架。