我有三页
1.index.html
2.navigate.html
3.lastpage.html
的index.html
<a href="lastpage.html">lastpage</a>
Navigate.html
<a href="lastpage.html">lastpage</a>
我需要在 Lastpage.html 中获取页面名称,该页面将在javascript或jquery中重定向到哪个页面。
答案 0 :(得分:2)
您正在寻找document.referrer
答案 1 :(得分:1)
你可以尝试
<a href="lastpage.html?page=navigate">lastpage</a>
并检查JS中的查询 - How can I get query string values in JavaScript?
答案 2 :(得分:0)
除了其他答案之外,您始终可以在本地存储(每个会话或每个客户端)sessionStorage.setItem("source", "b.html");
中存储一些值(如源URL)。