HTML基本标记等效于绝对路径

时间:2018-02-28 12:28:31

标签: html path

想象一下位于http://example.com/myWebsite/的网站。

我希望我的绝对路径指向myWebsite目录。

我知道可以使用base标记为相对链接执行此操作,但我希望保留相对链接的默认行为。

我能在头脑中指定一些有用的东西吗?

1 个答案:

答案 0 :(得分:1)

<!DOCTYPE html>
<html>
<head>
<base href="http://example.com/myWebsite/" target="_blank">
</head>
<body>

<p><img src="stickman.gif" width="24" height="39" alt="Stickman"> - 
Notice that we have only specified a relative address for the image. 
Since we have specified a base URL in the head section, the browser will 
look for the image at "http://example.com/myWebsite/stickman.gif".
</p>

</body>
</html>

使用此