<bdo id='9bIsn'></bdo><ul id='9bIsn'></ul>
    <legend id='9bIsn'><style id='9bIsn'><dir id='9bIsn'><q id='9bIsn'></q></dir></style></legend>
    <i id='9bIsn'><tr id='9bIsn'><dt id='9bIsn'><q id='9bIsn'><span id='9bIsn'><b id='9bIsn'><form id='9bIsn'><ins id='9bIsn'></ins><ul id='9bIsn'></ul><sub id='9bIsn'></sub></form><legend id='9bIsn'></legend><bdo id='9bIsn'><pre id='9bIsn'><center id='9bIsn'></center></pre></bdo></b><th id='9bIsn'></th></span></q></dt></tr></i><div id='9bIsn'><tfoot id='9bIsn'></tfoot><dl id='9bIsn'><fieldset id='9bIsn'></fieldset></dl></div>
  • <small id='9bIsn'></small><noframes id='9bIsn'>

      <tfoot id='9bIsn'></tfoot>

      1. HTML5离线应用与客户端存储的实现

        HTML5离线应用的目的是为了保证用户能在没有网络连接的情况下,也能够访问网站的内容。实现HTML5离线应用需要使用离线缓存机制,离线缓存机制能够将网站的完整内容缓存到用户本地,并且在没有网络连接时展示缓存的内容。

        <legend id='30fDU'><style id='30fDU'><dir id='30fDU'><q id='30fDU'></q></dir></style></legend>
          <bdo id='30fDU'></bdo><ul id='30fDU'></ul>
            1. <small id='30fDU'></small><noframes id='30fDU'>

            2. <tfoot id='30fDU'></tfoot>

                  <tbody id='30fDU'></tbody>

                  <i id='30fDU'><tr id='30fDU'><dt id='30fDU'><q id='30fDU'><span id='30fDU'><b id='30fDU'><form id='30fDU'><ins id='30fDU'></ins><ul id='30fDU'></ul><sub id='30fDU'></sub></form><legend id='30fDU'></legend><bdo id='30fDU'><pre id='30fDU'><center id='30fDU'></center></pre></bdo></b><th id='30fDU'></th></span></q></dt></tr></i><div id='30fDU'><tfoot id='30fDU'></tfoot><dl id='30fDU'><fieldset id='30fDU'></fieldset></dl></div>

                  HTML5离线应用的目的是为了保证用户能在没有网络连接的情况下,也能够访问网站的内容。实现HTML5离线应用需要使用离线缓存机制,离线缓存机制能够将网站的完整内容缓存到用户本地,并且在没有网络连接时展示缓存的内容。

                  HTML5的客户端存储主要有两种方式:localStorage 和 sessionStorage。localStorage 是一种持久化的本地存储,数据保存的时间不会受到时间的限制,直到用户手动清除。而sessionStorage 则是会话级别的本地存储,数据会在用户关闭浏览器标签页或网站会话结束时清除。

                  现在,我们来详细介绍一下如何实现HTML5离线应用和客户端存储。

                  HTML5离线应用实现

                  首先,我们在网站根目录下新建一个名为“cache.manifest”的缓存清单文件。文件内容如下:

                  CACHE MANIFEST
                  # v1.0.0
                  
                  CACHE:
                  /index.html
                  /css/style.css
                  /js/main.js
                  /images/logo.png
                  
                  NETWORK:
                  *
                  
                  FALLBACK:
                  / /offline.html
                  

                  以上代码中,CACHE MANIFEST 意味着这个文件是缓存清单文件。CACHE 列表中包含需要缓存的文件列表,NETWORK 列表中是不需要缓存,需要联网才能访问的文件列表。FALLBACK 列表设置了当无法连接网络时,使用哪个页面来替代无法达到的页面。

                  接下来,在网站的 html 根标签中添加 manifest 属性。如下代码:

                  <!DOCTYPE html>
                  <html lang="en" manifest="cache.manifest">
                  

                  在这里我们使用了 cache.manifest 作为离线应用的标识,当浏览器第一次访问该页面时,浏览器会下载 cache.manifest 文件中列出的所有文件,并存储在本地。以后在没有网络连接的情况下再次打开该页面,浏览器会直接从本地缓存中获取所需的文件,而不会再次向服务器请求。

                  localStorage 和 sessionStorage 的实现

                  使用localStorage 和 sessionStorage 主要可以用来存储用户数据和用户设置。我们来看下如何分别使用这两个客户端存储。

                  localStorage 的使用

                  localStorage 的操作非常简单,我们可以使用setItem()、getItem()和removeItem()方法来实现给localStorage 设置、获取、删除数据等操作,如下所示:

                  const key = 'username';
                  const value = 'Tom';
                  localStorage.setItem(key, value);  // 设置
                  const storedValue = localStorage.getItem(key);  // 获取
                  localStorage.removeItem(key);  // 删除
                  

                  使用 localStorage,存储的数据对于所有同源的页面都是可以访问的,如果需要在不同的域名下共享数据,建议使用 sessionStorage 或者 cookie。

                  sessionStorage 的使用

                  使用 sessionStorage 的方式与 localStorage 类似,也是使用 setItem()、getItem()和removeItem()这些方法来进行操作,如下所示:

                  const key = 'isLogin';
                  const value = 'true';
                  sessionStorage.setItem(key, value);  // 设置
                  const storedValue = sessionStorage.getItem(key);  // 获取
                  sessionStorage.removeItem(key);  // 删除
                  

                  不同之处在于 sessionStorage 中的数据在浏览器会话结束时会被自动清除,也就是说,如果用户关闭了浏览器,那么数据也就被永久删除了。

                  示例说明

                  以下两个示例,一个演示了如何使用 HTML5 离线缓存实现单页面应用,一个演示了如何使用localStorage 存储用户的偏好设置。

                  1. 单页面应用离线缓存示例:

                  在页面的根标签中添加manifest属性即可开启离线缓存。如下代码:

                  <!DOCTYPE html>
                  <html lang="en" manifest="cache.manifest">
                  <head>
                      <meta charset="UTF-8">
                      <title>SPA</title>
                  </head>
                  <body>
                      ...
                  </body>
                  </html>
                  

                  缓存清单文件 cache.manifest 中的内容如下:

                  CACHE MANIFEST
                  # v1.0.0
                  
                  CACHE:
                  /index.html
                  /css/style.css
                  /js/main.js
                  /images/logo.png
                  
                  NETWORK:
                  *
                  
                  FALLBACK:
                  / /offline.html
                  

                  以上代码中,CACHE 列表中列出了所需缓存的文件,NETWORK 列表是不需要缓存,需要联网才能访问的文件列表。FALLBACK 则是设置了当无法连接网络时,使用哪个页面来替代无法达到的页面。

                  1. 使用 localStorage 存储用户偏好设置示例:

                  在网站的设置页面上,我们可以利用 localStorage 存储用户的偏好设置。如下代码:

                  <form>
                      <input type="checkbox" id="autoPlay">
                      <label for="autoPlay">自动播放</label>
                  </form>
                  <script>
                      const key = 'setting_autoPlay';
                      const $autoPlay = document.querySelector('#autoPlay');
                      function setSetting() {
                          localStorage.setItem(key, $autoPlay.checked);
                      }
                      function getSetting() {
                          const value = localStorage.getItem(key);
                          if (value === 'false') {
                              $autoPlay.checked = false;
                          } else {
                              $autoPlay.checked = true;
                          }
                      }
                      getSetting();
                      $autoPlay.addEventListener('change', setSetting);
                  </script>
                  

                  以上代码中,我们使用 localStorage 记录了 $autoPlay 所代表的 checkbox 是否被选中的状态。在页面加载时,我们调用 getSetting() 方法来获取 $autoPlay 当前的状态,最终根据获取到的状态设置 checkbox 的 isChecked 属性。在用户改变 checkbox 的状态时,我们调用 setSetting() 方法来记录当前 checkbox 的状态。

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  下面是“背景图片自适应浏览器分辨率大小并自动拉伸全屏”的完整攻略。
                  下面是详细讲解“简单但很实用的5个CSS属性”的完整攻略:
                  以下是兼做美工之导航条制作过程分享的完整攻略:
                  JS 控制 CSS 样式表的方式主要有两种:通过修改样式属性来修改元素样式,以及通过切换 CSS 类名来切换元素样式。下面分别给出具体的步骤和示例说明。
                  实现首页动态视频背景,可以使用HTML5的video标签,下面是具体的示例代码和操作步骤:
                • <legend id='cn1wV'><style id='cn1wV'><dir id='cn1wV'><q id='cn1wV'></q></dir></style></legend>

                    • <small id='cn1wV'></small><noframes id='cn1wV'>

                          <i id='cn1wV'><tr id='cn1wV'><dt id='cn1wV'><q id='cn1wV'><span id='cn1wV'><b id='cn1wV'><form id='cn1wV'><ins id='cn1wV'></ins><ul id='cn1wV'></ul><sub id='cn1wV'></sub></form><legend id='cn1wV'></legend><bdo id='cn1wV'><pre id='cn1wV'><center id='cn1wV'></center></pre></bdo></b><th id='cn1wV'></th></span></q></dt></tr></i><div id='cn1wV'><tfoot id='cn1wV'></tfoot><dl id='cn1wV'><fieldset id='cn1wV'></fieldset></dl></div>
                          <tfoot id='cn1wV'></tfoot>
                            <tbody id='cn1wV'></tbody>
                            <bdo id='cn1wV'></bdo><ul id='cn1wV'></ul>