HTML:指向索引文件时的锚属性
考虑到将锚标记的 href 属性留空并不是最佳实践,我该如何“合法”地做到这一点?
我不想链接到index.html 或index.php 等,我想链接到该文档中的默认索引文件。
如果您位于根目录中,则将其设置为 /
可以解决问题,否则它仍然会去那里,所以这不是一个解决方案。
我该怎么做?
谢谢。
Considering leaving the href attribute empty for anchor tags is not a best-practice, how do I go about doing that "legally"?
I don't want to link to index.html or index.php or such, I want to link to the default index file in that document.
Setting it to /
does the trick if you are in the root, otherwise it will still go there so it's not a solution.
How should I do this?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您希望链接到当前目录中的默认文档,这应该是有效的:
如果您只是希望有一个不离开当前页面的锚标记:
If you wish to link to the default document at your current directory, this should be valid:
If you just wish to have an anchor tag that does not leave the current page:
尝试链接到 ./ - 认为应该这样做
Try linking to ./ - think that should do it
考虑在服务器端进行。
您可以在 PHP 中创建一个函数(因为这就是您正在使用的函数,对吧),该函数将获取当前 URL 并添加当前目录并呈现它。
一定要包括域名,因为他们说这对搜索引擎优化有好处。
Consider doing it server side.
You can create a function in PHP (causes that's what you are using, right) that would take the current URL and add the current directory and render that.
Do include the domain as they say it is good for SEO.