英文:
How do I link to the bottom of another page?
问题
我想要从subfile.html链接到index.html的底部。我是做错了什么还是这不可能?谢谢你的建议!
index.html
<h1 id="bottom">网站底部</h1>
subfile.html
<a href="..\index.html/#bottom">底部索引</a>
目录:
主文件夹 -> index.html
|
子文件夹 -> subfile.html
我尝试在VSCode中复制相对路径,但也没有起作用。
英文:
I want to link from subfile.html to the Bottom of index.html
Am I doing something wrong or is it not possible? Thanks for your advice!
index.html
<h1 id="bottom">Website Bottom</h1>
subfile.html
<a href="..\index.html/#bottom">Bottom Index</a>
> Directory:
> Main Folder -> index.html
> |
> Subfolder -> subfile.html
I tried copying the relative path in vscode but that didnt work either.
答案1
得分: 1
移除 #bottom 前面的斜杠。
英文:
Remove the forward slash before the #bottom
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论