以下简单代码在 Firefox (12.0) 中有效,但在 IE 9 中似乎无效,即使 IE9 支持本地存储。注意 alert(localStorage.lastname); 不显示任何结果。想知道在 IE9 中使用 localStorage 是否存在已知问题,因为文档确实说它受支持。
<!DOCTYPE html>
<html>
<body>
<script>
if(typeof(Storage)!=="undefined")
{
alert('local storage')
localStorage.lastname="Smith";
alert(localStorage.lastname);
}
else
{
alert("Sorry, your browser does not support web storage...")
}
</script>
</body>
</html>