无法读取 localStorage

Fail to read localStorage

我有一个 plunker 在 localStorage 中设置一个值:

<!DOCTYPE html>
<html>
  <script>
    localStorage.setItem('test', "hadddddha");
  </script>
</html>

我有一个代码 http://www.addbba.com/testLocalStorage.html 可以获取它:

<!DOCTYPE html>
<html>
  <script>
    var test = localStorage.getItem('test');
    console.log(test)
  </script>
</html>

奇怪的是,控制台显示的值为null。有谁知道发生了什么事吗?

根据 https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage localStorage 特定于文档的来源。您能否确认您正在使用与写入值相同的来源从 localStorage 读取值?