我正在尝试使用 HTML5 功能localStorage
。根据这个博客,它可以使用 IE8 来完成,但是当我尝试使用它时,我收到了一个 javascript 错误'localStorage is null or not an object'
所以我的问题是:localStorage
IE8可以开箱即用吗?这是我的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<title>IE8 - DOM Storage</title>
<script type="text/javascript">
function Save() {
localStorage.setItem('key','value');
}
</script>
</head>
<body>
<button onclick="Save();">
Save
</button>
</body>
</html>