http://localhost:8080/page/index
根路径:http://localhost:8080
在ie中输入localhost:8080/page/index不会起作用,要在前面加上“http://”才行,
<a href="admin"/> 链接的是:http://localhost:8080/page/admin
在admin前面没有“/”的时候是会将href中的字符替换在最后“/”后面:
现:http://localhost:8080/page/admin
原:http://localhost:8080/page/index
<a href="/admin"/> 链接的是:http://localhost:8080/admin
在admin前面有“/”的时候是会将href中的字符替换在根路径后面:
现:http://localhost:8080/admin
原:http://localhost:8080/page/index
本文详细解释了在网页中如何正确地使用URL链接,包括相对路径与绝对路径的区别,以及在不同情况下链接如何被解析和构建。通过实例展示了在IE浏览器中输入URL的方式以及<a>标签中href属性的不同用法。
3442

被折叠的 条评论
为什么被折叠?



