使用history.replaceState()导航到上一页

时间:2018-06-29 13:21:42

标签: javascript html html5-history

我需要使用javascript单击按钮导航到上一页。

我最好的结果是使用history api history.replaceState()方法

window.history.replaceState(null, null, "/page");

它导航到/page路线,但是如何用真实的上一页URL替换此参数?

那么如何获取上一页的URL路径名,以便我可以将其替换为“ / page”?

document.refferer不是解决方案。

使用history.back()history.go(-1)方法无法正常工作,因为网址未更新。

0 个答案:

没有答案