head中的base标签:设置超链接的默认行为

默认情况下,如果不指定超链接的target属性,则在当前窗口打开。使用head中的base可以制定超链接的base类,一切超链接都会继承它的属性。

<html>

<head>

    <base target="_blank" />
</head>

<body>
    <a href="https://weiyinfu.cn">weiyinfu.cn</a>
</body>

</html>

此外,base还可以指明href属性,表示它的相对链接。

<base href="http://mysite/images/" />
<img src="5.gif"/>

猜你喜欢

转载自www.cnblogs.com/weiyinfu/p/11967263.html