日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學無先后,達者為師

網站首頁 編程語言 正文

sessionStorage與localStorage

作者:MyDreamingCode 更新時間: 2022-04-17 編程語言

一、window.sessionStorage

1. 生命周期:關閉瀏覽器窗口

2. 使用范圍:同一個頁面下都可以使用

3. 存儲形式:鍵值對

4. 操作:

(1)存儲數據:sessionStorage.setItem(key, value)

(2)獲取數據:sessionStorage.getItem(key)

(3)刪除數據:sessionStorage.removeItem(key)

(4)刪除所有數據:sessionStorage.clear()

二、window.localStorage

1. 生命周期:forever,除非手動刪除

2. 使用范圍:同一瀏覽器下的多頁面使用

3. 存儲形式:鍵值對

4. 操作:

(1)存儲數據:localStorage.setItem(key, value)

(2)獲取數據:localStorage.getItem(key)

(3)刪除數據:localStorage.removeItem(key)

(4)刪除所有數據:localStorage.clear()

三、Demo


  記住用戶名
  

四、其他

1. 數組對象轉換為字符串格式:JSON.stringify()

2. 字符串轉換為對象格式:JSON.parse()

原文鏈接:https://blog.csdn.net/qq_61706112/article/details/122993248

欄目分類
最近更新