html5本地存储(localStorage)使用介绍

1、html5几种存储形式

本地存储(localStorage && sessionStorage)

离线缓存(application cache)

indexedDB 和 webSQL

2、localStorage && sessionStorage

过期时间:localStorage 永久存储,永不失效除非手动删除

sessionStorage 浏览器重新打开后就消失了

大小:每个域名是5M

3、localStorage API和sessionStorage API一致

getItem //取记录

setIten//设置记录

removeItem//移除记录

key//取key所对应的值

clear//清除记录

4、存储的内容

数组,图片,json,样式,脚本。。。(只要是能序列化成字符串的内容都可以存储)

上一篇:MyBatis从入门到精通(第4章):MyBatis动态SQL【foreach、bind、OGNL用法】


下一篇:WordPress翻译中 __()、_e()、_x、_ex 和 _n 的用法及区别