html5中,新加入了乙個localstorage特性,這個特性主要是用來作為本地儲存來使用的。
並且在ie8以上的ie版本才支援localstorage這個屬性。
// 儲存
localstorage.
setitem
("key"
,"value");
// 檢索
var check = localstorage.
getitem
("key");
// 列印輸出
console.
log(check)
語法:
window.localstorage
// 儲存資料語法:
localstorage.
setitem
("key"
,"value");
// 讀取資料語法:
var lastname = localstorage.
getitem
("key");
// 刪除資料語法:
localstorage.
removeitem
("key"
);
判斷localstorage是否存在(是否為空):
if
(localstorage.
getitem
("key")!=
null
)else
1、localstorage 和 sessionstorage 屬性允許在瀏覽器中儲存 key/value 對的資料。
2、localstorage 用於長久儲存整個**的資料,儲存的資料沒有過期時間,直到手動去刪除。
3、localstorage 屬性是唯讀的。
4、如果你只想將資料儲存在當前會話中,可以使用 sessionstorage 屬性, 該資料物件臨時儲存同一視窗(或標籤頁)的資料,在關閉視窗或標籤頁之後將會刪除這些資料。
HTML5本地儲存
align center html5本地儲存 align b 1.1概述 b html5 儲存是基於鍵值對的。資料儲存在乙個鍵裡,訪問資料時可以根據同樣的鍵獲得上次儲存的資料。鍵是乙個字串。而資料則可以是任何型別的js基本資料型別,包括字串,boolean,整數,和浮點數。需要注意的是,這些資料在儲...
html5 本地儲存
前言 最近在做專案時遇到了需要將資料儲存在使用者瀏覽器本地的需求,經過查詢了解到了web storage,通過學習初步掌握了web storage,以下是一些關於web storage的知識和用法,記憶力較差發布在csdn備忘。1 什麼是html5本地儲存?通過web storage web應用程式...
html5 本地儲存
最近一直在學習 html5,為了後期的專案進行知識儲備。html5 相對於 html4 新增加了一些有趣的標籤 屬性和方法,今天主要介紹下 html5 的本地儲存。html5 提供了兩種在客戶端儲存資料的新方法 兩個方法用法完全一樣,下面就以localstorage為例。早期我們都是使用cookie...