Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 页,第 1 页包含一个 div,第 2 页包含一些图像。我有一个功能,如果用户单击第 2 页中的任何图像,页面将重定向到第 1 页,并且所选图像应该出现在第 1 页的 div 中.
这如何通过 HTML5 会话存储来实现?
在将用户带到第一页之前,设置sessionStorage.imageclicked = [whatever image was clicked here]. 然后,获取该值并使用它来显示图像。
sessionStorage.imageclicked = [whatever image was clicked here]
不过,我可以问一下,您为什么不使用普通链接?
http://example.com/firstpage.ext?image=[whatever image was clicked]
即使是最古老的浏览器也支持这一点。