>想象一个位于http://example.com/myWebsite/
的网站。
我希望我的绝对路径指向myWebsite
目录。
我知道可以为带有 base
标签的相对链接执行此操作,但我希望保留相对链接的默认行为。
有什么有用的东西我可以在脑海中指定吗?
<!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>
使用这个