base Tag

 

base Tag

<html>

<head>
    <base href="https://dotblogs.com.tw/brooke/" target="_blank">
</head>

<body>
    <a href="2019/05/21/153521">base Tag</a><br>
    <a href="2016/02/16/215531" target="_top">超連結 a tag、href、target、hover</a><br>
    <a href="2017/06/21/110633">link tag</a>
</body>

</html>

說明:

1、base tag 有 href、target 屬性可用。

2、base tag target 屬性值可為 _blank、_parent、_self、_top

3、base tag href 路徑結尾必須要帶有「/」。

4、base tag 就像是 prefix 一樣,每當你對一元素指定相對路徑時,

prefix 將會和相對路徑合成一組絕對路徑。

5、當有指定 base tag target 屬性時,表示一元素預設的 target 值就是 base tag 的 target 值。