0

这在 IE10 中中断我认为可能所有 IE 版本不仅仅是 10,但尝试编写 Windows 应用程序可能会让人头疼。

var firstRun = (localStorage['firstRun'] == 'true');

if (!firstRun) {
  localStorage['firstRun'] = 'true';
  localStorage.money = 100;
}

我不确定我是否能弄清楚如何重写这个?

4

1 回答 1

0

我想你正在使用文件协议。不要使用文件 URI 方案,因为本地存储不能以这种方式在 ie10 中工作。安装一些服务器并通过 localhost 访问。

于 2014-07-08T20:36:12.067 回答