Web Storage是HTML5引入的一個(gè)非常重要的功能,可以在客戶端本地存儲(chǔ)數(shù)據(jù),類似HTML4的cookie,但可實(shí)現(xiàn)功能要比cookie強(qiáng)大的多,cookie大小被限制在4KB,Web Storage官方建議為每個(gè)網(wǎng)站5MB。
Web Storage又分為兩種:
sessionStorage
localStorage
從字面意思就可以很清楚的看出來(lái),sessionStorage將數(shù)據(jù)保存在session中,瀏覽器關(guān)閉也就沒(méi)了;而localStorage則一直將數(shù)據(jù)保存在客戶端本地;
不管是sessionStorage,還是localStorage,可使用的API都相同,常用的有如下幾個(gè)(以localStorage為例):
保存數(shù)據(jù):localStorage.setItem(key,value);讀取數(shù)據(jù):localStorage.getItem(key);刪除單個(gè)數(shù)據(jù):localStorage.removeItem(key);刪除所有數(shù)據(jù):localStorage.clear();得到某個(gè)索引的key:localStorage.key(index);
如上,key和value都必須為字符串,換言之,web Storage的API只能操作字符串。
接下來(lái),我們通過(guò)Web Storage開(kāi)發(fā)一個(gè)簡(jiǎn)單的通訊錄小程序,以演示相關(guān)API的使用方法;我們要實(shí)現(xiàn)如下功能:
錄入聯(lián)系人,聯(lián)系人有姓名、手機(jī)號(hào)碼2個(gè)字段,以手機(jī)號(hào)作為key存入localStorage;根據(jù)手機(jī)號(hào)碼,查找機(jī)主;列出當(dāng)前已保存的所有聯(lián)系人信息;
首先先寫一個(gè)簡(jiǎn)單的html代碼
XML/HTML Code復(fù)制內(nèi)容到剪貼板
- <!DOCTYPEHTML>
- <html>
- <head>
- <metacharsetmetacharset="utf-8"/>
- <title>HTML5本地存儲(chǔ)之WebStorage篇</title>
- </head>
- <body>
- <divstyledivstyle="border:2pxdashed#ccc;width:320px;text-align:center;">
- <labelforlabelfor="user_name">姓名:</label>
- <inputtypeinputtype="text"id="user_name"name="user_name"class="text"/>
- <br/>
- <labelforlabelfor="mobilephone">手機(jī):</label>
- <inputtypeinputtype="text"id="mobilephone"name="mobilephone"/>
- <br/>
- <inputtypeinputtype="button"onclick="save()"value="新增記錄"/>
- <hr/>
- <labelforlabelfor="search_phone">輸入手機(jī)號(hào):</label>
- <inputtypeinputtype="text"id="search_phone"name="search_phone"/>
- <inputtypeinputtype="button"onclick="find()"value="查找機(jī)主"/>
- <pidpid="find_result"><br/></p>
- </div>
- <br/>
- <dividdivid="list">
- </div>
- </body>
- </html>
寫完頁(yè)面的話,展示效果差不多就是如下圖:
要實(shí)現(xiàn)聯(lián)系人的保存,只需要簡(jiǎn)單實(shí)現(xiàn)如下JS方法即可:
XML/HTML Code復(fù)制內(nèi)容到剪貼板
- functionsave(){
- varmobilephone=document.getElementById("mobilephone").value;
- varuser_name=document.getElementById("user_name").value;
- localStorage.setItem(mobilephone,user_name);
- } //用于保存數(shù)據(jù)
要實(shí)現(xiàn)查找機(jī)主,則實(shí)現(xiàn)如下JS方法:
XML/HTML Code復(fù)制內(nèi)容到剪貼板
- //查找數(shù)據(jù)
- functionfind(){
- varsearch_phone=document.getElementById("search_phone").value;
- varname=localStorage.getItem(search_phone);
- varfind_result=document.getElementById("find_result");
- find_result.innerHTML=search_phone+"的機(jī)主是:"+name;
- }
要展現(xiàn)所有已保存的聯(lián)系人信息,則需要使用localStorage.key(index)方法,如下:
XML/HTML Code復(fù)制內(nèi)容到剪貼板
- //將所有存儲(chǔ)在localStorage中的對(duì)象提取出來(lái),并展現(xiàn)到界面上
- functionloadAll(){
- varlist=document.getElementById("list");
- if(localStorage.length>0){
- varresult="<tableborder='1'>";
- result+="<tr><td>姓名</td><td>手機(jī)號(hào)碼</td></tr>";
- for(vari=0;i<localStorage.length;i++){
- varmobilephone=localStorage.key(i);
- varname=localStorage.getItem(mobilephone);
- result+="<tr><td>"+name+"</td><td>"+mobilephone+"</td></tr>";
- }
- result+="</table>";
- list.innerHTML=result;
- }else{
- list.innerHTML="目前數(shù)據(jù)為空,趕緊開(kāi)始加入聯(lián)系人吧";
- }
- }
效果如下:
問(wèn)題:如上的演示,都只有2個(gè)字段,姓名和手機(jī)號(hào)碼,如果要存入更為豐富的聯(lián)系人信息,比如公司名稱、家庭地址等,如何實(shí)現(xiàn)呢?Web Storage不是只能處理字符串嗎?此時(shí),可以利用JSON的stringify()方法,將復(fù)雜對(duì)象轉(zhuǎn)變成字符串,存入Web Storage中;當(dāng)從Web Storage中讀取時(shí),可以通過(guò)JSON的parse()方法再轉(zhuǎn)換成JSON對(duì)象;
如下簡(jiǎn)單演示增加了公司屬性的聯(lián)系人保存JS代碼:
XML/HTML Code復(fù)制內(nèi)容到剪貼板
- //保存數(shù)據(jù)
- functionsave(){
- varcontact=newObject;
- contact.user_name=document.getElementById("user_name").value;
- contact.mobilephone=document.getElementById("mobilephone").value;
- contact.company=document.getElementById("company").value;
- varstr=JSON.stringify(contact);
- localStorage.setItem(contact.mobilephone,str);
- loadAll();
- }
- //將所有存儲(chǔ)在localStorage中的對(duì)象提取出來(lái),并展現(xiàn)到界面上
- functionloadAll(){
- varlist=document.getElementById("list");
- if(localStorage.length>0){
- varresult="<tableborder='1'>";
- result+="<tr><td>姓名</td><td>手機(jī)</td><td>公司</td></tr>";
- for(vari=0;i<localStorage.length;i++){
- varmobilephone=localStorage.key(i);
- varstr=localStorage.getItem(mobilephone);
- varcontact=JSON.parse(str);
- result+="<tr><td>"+contact.user_name+"</td><td>"+contact.mobilephone+"</td><td>"+contact.company+"</td></tr>";
- }
- result+="</table>";
- list.innerHTML=result;
- }else{
- list.innerHTML="目前數(shù)據(jù)為空,趕緊開(kāi)始加入聯(lián)系人吧";
- }
- }
效果如下:
以上所述是小編給大家介紹的Html5 web本地存儲(chǔ)實(shí)例詳解,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!