基本 URL 链接 ‹base /›

Exisi 2020-06-01 12:46:22
Categories: Tags:



 

属性

描述

href

URL

规定页面中所有相对链接的基准 URL

target

_blank

_parent

_self

_top

framename

在何处打开页面中所有的链接。

 

实例

<!DOCTYPE html>

<html lang="en">

<head>

<title>网页的标题</title>

<base href="http://www.w3school.com.cn/i/" />

</head>

 

<body>

<img src="eg_smile.gif" />

</body>

 

</html>

 

实例

<html lang="en">

<head>

<title>网页的标题</title>

<base target="_blank" />

</head>

 

<body>

<a href="http://www.w3school.com.cn">W3School</a>

</body>

 

</html>

 

 

来自 <https://www.w3school.com.cn/tags/tag_base.asp>