Html5 web本地存儲(chǔ)實(shí)例詳解
Web Storage是HTML5引入的一個(gè)特別很是緊張的功能,可以在客戶(hù)端本地存儲(chǔ)數(shù)據(jù),類(lèi)似HTML4的cookie,但可實(shí)現(xiàn)功能要比cookie壯大的多,cookie大小被限定在4KB,Web Storage官方建議為每個(gè)網(wǎng)站5MB。
Web Storage又分為兩種:
sessionStorage
localStorage
從字面意思就可以很清楚的看出來(lái),sessionStorage將數(shù)據(jù)保存在session中,欣賞器關(guān)閉也就沒(méi)了;而localStorage則一向?qū)?shù)據(jù)保存在客戶(hù)端本地;
不管是sessionStorage,照舊localStorage,可使用的API都雷同,常用的有如下幾個(gè)(以localStorage為例):
保存數(shù)據(jù):localStorage.setItem(key,value);讀取數(shù)據(jù):localStorage.getItem(key);刪除單個(gè)數(shù)據(jù):localStorage.removeItem(key);刪除所稀有據(jù):localStorage.clear();得到某個(gè)索引的key:localStorage.key(index);如上,key和value都必須為字符串,換言之,web Storage的API只能操作字符串。
接下來(lái),我們通過(guò)Web Storage開(kāi)發(fā)一個(gè)簡(jiǎ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)系人信息;首先先寫(xiě)一個(gè)簡(jiǎn)單的html代碼
- <!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>
寫(xiě)完頁(yè)面的話,展示結(jié)果差不多就是如下圖:
要實(shí)現(xiàn)聯(lián)系人的保存,只必要簡(jiǎn)單實(shí)現(xiàn)如下JS方法即可:
- 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方法:
- //查找數(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)方法,如下:
- //將所有存儲(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)系人吧";
- }
- }
結(jié)果如下:
題目:如上的演示,都只有2個(gè)字段,姓名和手機(jī)號(hào)碼,假如要存入更為雄厚的聯(lián)系人信息,比如公司名稱(chēng)、家庭地址等,如何實(shí)現(xiàn)呢?Web Storage不是只能處理字符串嗎?此時(shí),可以行使JSON的stringify()方法,將復(fù)雜對(duì)象變化成字符串,存入Web Storage中;當(dāng)從Web Storage中讀取時(shí),可以通過(guò)JSON的parse()方法再轉(zhuǎn)換成JSON對(duì)象;
如下簡(jiǎn)單演示增長(zhǎng)了公司屬性的聯(lián)系人保存JS代碼:
- //保存數(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)系人吧";
- }
- }
結(jié)果如下:
以上所述是小編給大家介紹的Html5 web本地存儲(chǔ)實(shí)例詳解,盼望對(duì)大家有所幫助,假如大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也特別很是感謝大家對(duì)圖趣網(wǎng)網(wǎng)站的支持!
本文地址:http://pkvc.cn/tutorial/wd3362.html
您可能還喜歡
- jquery Jcrop圖像裁切插件中文api文檔
- @media適配不同尺寸的手機(jī)
- 返回上一頁(yè)代碼的幾種寫(xiě)法
- Dreamweaver CC 2014新功能介紹
- 深入了解viewport和px
- 優(yōu)秀CSS代碼書(shū)寫(xiě)的10個(gè)規(guī)范
- 畫(huà)出你的風(fēng)格:HTML5創(chuàng)意畫(huà)板的設(shè)計(jì)教程
- Div中height:100%無(wú)效的解決辦法
- 網(wǎng)頁(yè)前端-網(wǎng)頁(yè)切圖命名規(guī)范
- 為網(wǎng)頁(yè)設(shè)計(jì)師而生的14個(gè)文本編輯器
- 專(zhuān)訪:石墨文檔產(chǎn)品總監(jiān)羅穎
- UI設(shè)計(jì)不得不知的移動(dòng)端UI尺寸適
- 光音移動(dòng)設(shè)計(jì)規(guī)范 — 表單類(lèi)
- 體驗(yàn)設(shè)計(jì)中的排序問(wèn)題
- 網(wǎng)頁(yè)設(shè)計(jì)精粹 網(wǎng)頁(yè)中那些迷人的按
- aliued:響應(yīng)式設(shè)計(jì)的現(xiàn)狀與趨勢(shì)
- 10個(gè)智能對(duì)象處理的ps技巧
- 網(wǎng)頁(yè)UI - 原子設(shè)計(jì)理論(上)
- 如何通過(guò)設(shè)計(jì)提升banner點(diǎn)擊率?
- 晉小彥視覺(jué)設(shè)計(jì)系列文章(二):全屏