localStorage使用
需要注意的是,HTML5本地存储只能存字符串,任何格式存储的时候都会被自动转为字符串,所以读取的时候,需要自己进行类型的转换。
支持的情况如上图,IE在8.0的时候就支持了,非常出人意料。不过需要注意的是,IE、Firefox测试的时候需要把文件上传到服务器上(或者localhost),直接点开本地的HTML文件,是不行的。
使用示例
localStorage.setItem("b","isaac");
localStorage.getItem("b");
localStorage.removeItem("b");
localStorage.clear();
参考:http://www.cnblogs.com/xiaowei0705/archive/2011/04/19/2021372.html