导航到另一个页面后如何获取上一个URL

时间:2019-05-25 11:57:32

标签: javascript jquery href

我已经在页面上实现了previous button,该页面可以导航我 到上一页。

Page A-> Page B(具有上一个按钮) 如何找到Page A的链接,以便使用Page A

将我带回到javascript/jQuery

我尝试了此链接

  

How to get the previous URL in JavaScript?

我使用了这个history.back(),但可以与onclick配合使用

如何获取href。

1 个答案:

答案 0 :(得分:0)

使用document.referrer

console.log(document.referrer);
/* The above logs this page because Stack Snippets are run on stacksnippets.net,
   and therefore your browser went there from this page 
   (because you're running the code here).
*/