创建链接到前一个网页的<a>标签最简单的方法是什么?基本上是一个模拟的后退按钮,但实际上是一个超链接。只提供客户端技术。
编辑
寻找能够在鼠标悬停时显示你要点击的页面URL的解决方案,就像一个正常的静态超链接一样。我不希望用户在鼠标悬停在超链接上时查看history.go(-1)。到目前为止我发现的最好的是:
< >脚本
文档。写入('<a href="' +文档。referrer + '">Go Back</a>');
> < /脚本
是文档。引用可靠吗?跨浏览器的安全吗?我很乐意接受更好的答案。
如果在第二个域中单击,或者referrer为空,History.go(-1)将不起作用。
所以我们必须在到达这个定义域时存储historyCount然后返回这一侧的导航次数减去1。
// if referrer is different from this site
if (!document.referrer.includes(window.location.host)) {
// store current history length
localStorage.setItem('historyLength', `${history.length}`);
}
// Return to stored referrer on logo click
document.querySelector('header .logo').addEventListener('click',
() =>
history.go(Number(localStorage.getItem('historyLength')) - history.length -1)
);