与绝对路径等效的 HTML 基标记

  • 本文关键字:HTML 路径 html path
  • 更新时间 :
  • 英文 :


>想象一个位于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>

使用这个

相关内容

  • 没有找到相关文章

最新更新