Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
骨干网可以使用本地存储缓存网页(类似于 appcache)吗?我知道主干可以缓存集合,但我想存储整个页面。我还希望能够在线更新内容。我查看了各种帖子,但它们仅指缓存集合,而不是整个网页。
您可以使用 localstorage 存储任何字符串,但最大大小可能因浏览器而异。
像这样的东西可以工作: localStorage.setItem('page_name', $('body').html());