我阅读了有关 sessionStorage 和 localStorage 的一些文档,但我不明白范围是什么:域、特定页面?
例如,如果我有以下页面:
http://example.com/products.aspx?productID=1
http://example.com/products.aspx?productID=2
http://example.com/services.aspx?serviceID=3
如果在上述每个页面上我运行(idvalue 是查询字符串中的值):
localStorage.setItem('ID',idvalue);
我最终会存储 3 个不同的值,还是这些值会相互覆盖?