01|离线监测
// 离线检测属性
navigator.onLine // true or false
// 离线事件
online,offline
02|应用缓存
/*
描述文件: offline.manifest,列出要下载和缓存的资源
文件扩展名以前推荐manifest,现在推荐用appcache
*/
CACHE MANIFEST
#Comment
file.js
file.css
// 与html文档关联
<html manifest="/offline.manifest">
03|数据存储
- cookie
- localStorage
- sessionStorage
- indexedDB
网友评论