如何将sessionstorage数据传递到header.location

时间:2018-05-30 09:47:00

标签: jquery

这是我存储的会话数据:

<script>document.write(sessionStorage.step1);</script>

我需要将此会话存储数据传递到header.location,如下所示:

window.location.assign("http://example.com/?value=".$sessionStorage.step1)

上面的语法不起作用。你能建议我解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

使用loction.href重定向,下面是代码。

location.href = 'example.com'+sessionStorage.step1

想要分配它,请在下面使用

location.assign = location.href+sessionStorage.step1