• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    HTML5 Web存储方式的localStorage和sessionStorage进行数据本地存储案例应用

    使用HTML5 Web存储的localStorage和sessionStorage方式进行Web页面数据本地存储。

    页面参考如下图,能将页面上的数据进行本地存储。并能读取存储的数据显示在页面上。

    localStorage(本地存储),可以长期存储数据,没有时间限制,一天,一年,两年甚至更长,数据都可以使用。

    sessionStorage(会话存储),只有在浏览器被关闭之前使用,创建另一个页面时同意可以使用,关闭浏览器之后数据就会消失。

    某个博主的测试localStorage兼容情况,如下
    Chrome4+ 开始支持localStorage

    Firefox3.5+开始支持localStorage
    Firefox1.5+支持globalStorage

    IE8+支持localStorage
    IE7兼容模式支持localStorage
    IE5.5+支持userdata

    Safari 4+ 支持localStorage
    Opera10.5+支持localStorage

     

    复制代码
    代码如下:

    <!DOCTYPE html>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <style type="text/css">
    textarea {
    width: 300px;
    height: 300px;
    }
    .button {
    width: 100px;
    }
    </style>
    </head>
    <body>
    <script type="text/javascript">
    //使用HTML5 Web存储的localStorage和sessionStorage方式进行Web页面数据本地存储。
    //页面参考如下图,能将页面上的数据进行本地存储。并能读取存储的数据显示在页面上。
    function saveSession() {
    var t1 = document.getElementById("t1");
    var t2 = document.getElementById("t2");
    var mydata = t2.value;
    var oStorage = window.sessionStorage;
    oStorage.mydata = mydata;
    t1.value += "sessionStorage保存mydata:" + mydata + "\n";
    }
    function readSession() {
    var t1 = document.getElementById("t1");
    var oStorage = window.sessionStorage;
    var mydata = "不存在";
    if (oStorage.mydata) {
    mydata = oStorage.mydata;
    }
    t1.value += "sessionStorage读取mydata:" + mydata + "\n";
    }
    function cleanSession() {
    var t1 = document.getElementById("t1");
    var oStorage = window.sessionStorage;
    var mydata = "不存在";
    if (oStorage.mydata) {
    mydata = oStorage.mydata;
    }
    oStorage.removeItem("mydata");
    t1.value += "sessionStorage清除mydata:" + mydata + "\n";
    }
    function saveStorage() {
    var t1 = document.getElementById("t1");
    var t2 = document.getElementById("t2");
    var mydata = t2.value;
    var oStorage = window.localStorage;
    oStorage.mydata = mydata;
    t1.value += "localStorage保存mydata:" + mydata + "\n";
    }
    function readStorage() {
    var t1 = document.getElementById("t1");
    var oStorage = window.localStorage;
    var mydata = "不存在";
    if (oStorage.mydata) {
    mydata = oStorage.mydata;
    }
    t1.value += "localStorage读取mydata:" + mydata + "\n";
    }
    function cleanStorage() {
    var t1 = document.getElementById("t1");
    var oStorage = window.localStorage;
    var mydata = "不存在";
    if (oStorage.mydata) {
    mydata = oStorage.mydata;
    }
    oStorage.removeItem("mydata");
    t1.value += "localStorage清除mydata:" + mydata + "\n";
    }
    </script>
    <div>
    <textarea id="t1"></textarea>
    <label>需要保存的数据: </label>
    <input type="text" id="t2" />
    <input type="button" class="button" onclick="saveSession()" name="b1" value="session保存" />
    <input type="button" class="button" onclick="readSession()" value="session读取" />
    <input type="button" class="button" onclick="cleanSession()" value="session清除" />
    <input type="button" class="button" onclick="saveStorage()" value="local保存" />
    <input type="button" class="button" onclick="readStorage()" value="local读取" />
    <input type="button" class="button" onclick="cleanStorage()" value="local清除" />
    </div>
    </body>
    </html>

    上一篇:HTML5 Web Database 数据库的SQL语句的使用方法
    下一篇:HTML5自定义data-* data(obj)属性和jquery的data()方法的使用
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    HTML5 Web存储方式的localStorage和sessionStorage进行数据本地存储案例应用 HTML5,Web,存储,方式,的,localStorage,