HTML <base> 标签


示例

为页面上的所有链接指定默认 URL 和默认目标:

<head>
  <base href="https://www.91xjr.com/" target="_blank">
</head>

<body>
<img src="images/stickman.gif" width="24" height="39" alt="Stickman">
<a href="tags/tag_base.html">HTML base Tag</a>
</body>
亲自试一试 »

定义和用法

这个<base>标签指定文档中所有相对 URL 的基本 URL 和/或目标。

这个<base>标记必须具有 href 或 target 属性,或两者都有。

只能有一个<base>文档中的元素,并且它必须位于 <head> 元素内。


浏览器支持

Element
<base> Yes Yes Yes Yes Yes

属性

Attribute Value Description
href URL Specifies the base URL for all relative URLs in the page
target _blank
_parent
_self
_top
Specifies the default target for all hyperlinks and forms in the page

全局属性和事件

这个<base>标签还支持HTML 中的全局属性


事件属性

这个<base>标签不支持任何事件属性。


相关页面

HTML DOM 参考:基础对象


默认 CSS 设置

没有任何。