html – 如何在不编写完整URL的情况下链接到当前域上的页面

前端之家收集整理的这篇文章主要介绍了html – 如何在不编写完整URL的情况下链接到当前域上的页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设当前的URL是example.com/test/example

我想说我想链接到example.com/test/example/another

< a href =“/ another”>将我链接到example.com/another

如何在不必将完整URL放入标签的情况下链接到example.com/test/example/another?

解决方法

<a href="another">

应该这样做.

编辑:我的坏,它实际上是:

<a href="./another">
原文链接:https://www.f2er.com/html/227257.html

猜你在找的HTML相关文章