我的网站上有一个页脚部分,我想在其中包含一个返回顶部的链接。问题是它无法检测到用户在网站的哪个页面上,因此它在 index html 顶部发送它。有什么办法可以做到这一点?
我不能使用<a href="#">Back to top</a>
,因为我有一个链接到网站索引页面的基本 href。
这段代码运行良好,也可以跨浏览器:
<a href="javascript:void(0)" onclick="parent.window.scrollTo(0,0);">TOP</a>
我的网站上有一个页脚部分,我想在其中包含一个返回顶部的链接。问题是它无法检测到用户在网站的哪个页面上,因此它在 index html 顶部发送它。有什么办法可以做到这一点?
我不能使用<a href="#">Back to top</a>
,因为我有一个链接到网站索引页面的基本 href。
这段代码运行良好,也可以跨浏览器:
<a href="javascript:void(0)" onclick="parent.window.scrollTo(0,0);">TOP</a>