创建链接到前一个网页的<a>标签最简单的方法是什么?基本上是一个模拟的后退按钮,但实际上是一个超链接。只提供客户端技术。

编辑 寻找能够在鼠标悬停时显示你要点击的页面URL的解决方案,就像一个正常的静态超链接一样。我不希望用户在鼠标悬停在超链接上时查看history.go(-1)。到目前为止我发现的最好的是:

< >脚本 文档。写入('<a href="' +文档。referrer + '">Go Back</a>'); > < /脚本

是文档。引用可靠吗?跨浏览器的安全吗?我很乐意接受更好的答案。


当前回答

这个解决方案为您提供了两全其美的解决方案

用户可以将鼠标悬停在链接上查看URL 用户最终不会得到一个损坏的后台堆栈

更多细节请参见下面的代码注释。

var element = document.getElementById('back-link'); // Provide a standard href to facilitate standard browser features such as // - Hover to see link // - Right click and copy link // - Right click and open in new tab element.setAttribute('href', document.referrer); // We can't let the browser use the above href for navigation. If it does, // the browser will think that it is a regular link, and place the current // page on the browser history, so that if the user clicks "back" again, // it'll actually return to this page. We need to perform a native back to // integrate properly into the browser's history behavior element.onclick = function() { history.back(); return false; } <a id="back-link">back</a>

其他回答

<a href="#" onclick="history.back();">Back</a>

我用了一扇窗户。历史记录,并返回一个false,以便href不被浏览器导航(默认行为)。

<a href="www.web.com" onclick="window.history.go(-1); return false;"> Link </a>

另一种方式:

<a href=“javascript:history.back()”>Go Back</a>

这个解决方案为您提供了两全其美的解决方案

用户可以将鼠标悬停在链接上查看URL 用户最终不会得到一个损坏的后台堆栈

更多细节请参见下面的代码注释。

var element = document.getElementById('back-link'); // Provide a standard href to facilitate standard browser features such as // - Hover to see link // - Right click and copy link // - Right click and open in new tab element.setAttribute('href', document.referrer); // We can't let the browser use the above href for navigation. If it does, // the browser will think that it is a regular link, and place the current // page on the browser history, so that if the user clicks "back" again, // it'll actually return to this page. We need to perform a native back to // integrate properly into the browser's history behavior element.onclick = function() { history.back(); return false; } <a id="back-link">back</a>

对于回到上一页使用锚标签< >,下面是2个工作方法,其中第一个是更快的,有一个很大的优势,回到上一页。

两种方法我都试过了。

1)

<a href="#" onclick="location.href = document.referrer; return false;">Go Back</a>

如果你在当前浏览器窗口的新选项卡中点击了一个链接并打开了一个链接,那么上面的方法(1)非常有效。

2)

<a href="javascript:history.back()">Go Back</a>

以上方法(2)只工作ok,如果你已经点击了一个链接,并在当前浏览器窗口的当前选项卡打开链接。

如果你在新标签中打开链接,它将不起作用。这里history.back()将无法工作,如果链接在web浏览器的新选项卡中打开。