gpt4 book ai didi

html 标签功能被误解?

转载 作者:行者123 更新时间:2023-11-27 23:42:57 25 4
gpt4 key购买 nike

我有简单的 IIS 结构:

  • 默认网站
    • 测试应用

DefaultWebsite - 登陆页面可通过 192.168.1.5 访问

testapp - 可通过访问 192.168.1.5/testapp 访问 Web 应用程序

testapp 的 index.html

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Test App</title>
<base href="/testapp/" >
</head>
<body>
<a href="/">Test Link</a>
</body>
</html>

我正在使用 base 标记来设置应用程序的基础,因此当单击测试链接时,我希望只重新加载页面,因为它指向文档根目录。但这种情况并非如此。单击“测试链接”会将我带到 DefaultWebSite 的索引。

这是应该如何工作还是我没有正确理解 base 标签...

最佳答案

base标记仅适用于所有相对 URL。因此,使用像 <base href="/testapp/"> 这样的基本标签以下将适用。

<a href="/index.html">link</a>

将引用 DefaultWebsite。

但是

<a href="index.html">link</a>

将引用您的测试应用程序。

关于html <base> 标签功能被误解?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31047897/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com