HTML5 Web存儲的localStorage和sessionStorage的使用方法

使用HTML5 Web存儲的localStoragesessionStorage方式進行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頁面數據本地存儲。
        //頁面參考如下圖,能將頁面上的數據進行本地存儲。並能讀取存儲的數據顯示在頁面上。
        var t1;
        var t2;
        var oStorage;
        var oStorage;
        function init() {//初始化t1,t2
            t1 = document.getElementById("t1");
            t2 = document.getElementById("t2");
            sStorage = window.sessionStorage;
            lStorage = window.localStorage
        }
        function saveSession() {
            sStorage.mydata = t2.value;
            t1.value += "sessionStorage保存mydata:" + t2.value + "\n";
        }
        function readSession() {
            t1.value += "sessionStorage讀取mydata:" + sStorage.mydata + "\n";
        }
        function cleanSession() {
            t1.value += "sessionStorage清除mydata:" + sStorage.mydata + "\n";
            sStorage.removeItem("mydata");
        }
        function saveStorage() {
            lStorage.mydata = t2.value;
            t1.value += "localStorage保存mydata:" + t2.value + "\n";
        }
        function readStorage() {
            t1.value += "localStorage讀取mydata:" + lStorage.mydata + "\n";
        }
        function cleanStorage() {
            t1.value += "localStorage清除mydata:" + lStorage.mydata + "\n";
            lStorage.removeItem("mydata");
        }
    </script>
    <div>
        <textarea id="t1"></textarea><br />
        <label>需要保存的數據: </label>
        <input type="text" id="t2" /><br />
        <input type="button" class="button"  name="b1" value="session保存" />
        <input type="button" class="button"  value="session讀取" />
        <input type="button" class="button"  value="session清除" /><br />
        <input type="button" class="button"  value="local保存" />
        <input type="button" class="button"  value="local讀取" />
        <input type="button" class="button"  value="local清除" />
    </div>
</body>
</html>

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章