我正在尝试使用HTML5功能localStorage。根据这个博客,它可以使用IE8完成,但是当我尝试使用它时,却出现了JavaScript错误'localStorage is null or not an object'
所以我的问题是:localStorageIE8 可以直接使用吗?这是我的代码:
<!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>
胡说叔叔
汪汪一只猫