javascript設(shè)置和獲取cookie的方法實(shí)例詳解
本文實(shí)例講述了javascript設(shè)置和獲取cookie的方法。分享給大家供大家參考,具體如下:
1. 設(shè)置cookie
function setCookie(cookieName,cookieValue,cookieExpires,cookiePath) { cookieValue = escape(cookieValue);//編碼latin-1 if(cookieExpires=="") { var nowDate = new Date(); nowDate.setMonth(nowDate.getMonth()+6); cookieExpires = nowDate.toGMTString(); } if(cookiePath!="") { cookiePath = ";Path="+cookiePath; } document.cookie= cookieName+"="+cookieValue+";expires="+cookieExpires+cookiePath; }
2. 獲取cookie
function getCookieValue(cookieName) { var cookieValue = document.cookie; var cookieStartAt = cookieValue.indexOf(""+cookieName+"="); if(cookieStartAt==-1) { cookieStartAt = cookieValue.indexOf(cookieName+"="); } if(cookieStartAt==-1) { cookieValue = null; } else { cookieStartAt = cookieValue.indexOf("=",cookieStartAt)+1; cookieEndAt = cookieValue.indexOf(";",cookieStartAt); if(cookieEndAt==-1) { cookieEndAt = cookieValue.length; } cookieValue = unescape(cookieValue.substring(cookieStartAt,cookieEndAt));//解碼latin-1 } return cookieValue; }
例子:
<!doctype html> <html> <head> <title>cookie</title> <meta charset="utf-8"> <script language="javascript" type="text/javascript"> //獲取cookie function getCookieValue(cookieName) { var cookieValue = document.cookie; var cookieStartAt = cookieValue.indexOf(""+cookieName+"="); if(cookieStartAt==-1) { cookieStartAt = cookieValue.indexOf(cookieName+"="); } if(cookieStartAt==-1) { cookieValue = null; } else { cookieStartAt = cookieValue.indexOf("=",cookieStartAt)+1; cookieEndAt = cookieValue.indexOf(";",cookieStartAt); if(cookieEndAt==-1) { cookieEndAt = cookieValue.length; } cookieValue = unescape(cookieValue.substring(cookieStartAt,cookieEndAt));//解碼latin-1 } return cookieValue; } //設(shè)置cookie function setCookie(cookieName,cookieValue,cookieExpires,cookiePath) { cookieValue = escape(cookieValue);//編碼latin-1 if(cookieExpires=="") { var nowDate = new Date(); nowDate.setMonth(nowDate.getMonth()+6); cookieExpires = nowDate.toGMTString(); } if(cookiePath!="") { cookiePath = ";Path="+cookiePath; } document.cookie= cookieName+"="+cookieValue+";expires="+cookieExpires+cookiePath; } //頁(yè)面加載時(shí)間處理函數(shù) function window_onload() { var userNameElem = document.getElementById("userName");//用戶名輸入框?qū)ο? var passwordElem = document.getElementById("password");//密碼輸入框?qū)ο? var currUserElem = document.getElementById("currUser");//復(fù)選框?qū)ο? var currUser = getCookieValue("currUser"); if(currUser!=null) { userNameElem.value=currUser; currUserElem.checked = true; } if(userNameElem.value!="") { passwordElem.focus();//密碼輸入框獲得焦點(diǎn) } else { currUserElem.focus();//用戶名輸入框獲得焦點(diǎn) } } //表單提交處理 function login() { var userNameElem = document.getElementById("userName"); var passwordElem = document.getElementById("password"); var currUserElem = document.getElementById("currUser"); if(userNameElem.value=="" || passwordElem.value=="") { alert("用戶名或密碼不能為空!"); if(userNameElem.value=="") { userNameElem.focus();//用戶名輸入框獲得焦點(diǎn) } else { passwordElem.focus();//密碼輸入框獲得焦點(diǎn) } return false; } if(currUserElem.checked) { setCookie("currUser",userNameElem.value,"","");//設(shè)置cookie } else { var nowDate = new Date();//當(dāng)前日期 nowDate.setMonth(nowDate.getMonth()-2);//將cookie的過期時(shí)間設(shè)置為之前的某個(gè)日期 cookieExpires = nowDate.toGMTString();//過期時(shí)間的格式必須是GMT日期的格式 setCookie("userName","",cookieExpires,"");//刪除一個(gè)cookie只要將過期時(shí)間設(shè)置為過去的一個(gè)時(shí)間即可 } return true; } </script> <style type="text/css"> div{ font-size:12px; } </style> </head> <body onload="window_onload()"> <div> <form id="loginForm" onsubmit="return login()"> 用戶名:<input type="text" id="userName"><br> 密 碼:<input type="password" id="password"> <input type="checkbox" id="currUser">記住用戶名<br> <input type="submit" value="登錄"> </form> </div> </body> </html>
注意:
由于google Chrome瀏覽器為了安全只支持online-cookie,所以在本地測(cè)試時(shí)是沒有效果的,需要上傳到服務(wù)器試一下。
更多關(guān)于JavaScript操作cookie相關(guān)內(nèi)容可查看本站專題:《JavaScript 操作 cookie相關(guān)知識(shí)匯總》及《jQuery的cookie操作技巧總結(jié)》
希望本文所述對(duì)大家JavaScript程序設(shè)計(jì)有所幫助。
- 原生js配合cookie制作保存路徑的拖拽
- js操作cookie保存瀏覽記錄的方法
- jquery.cookie.js用法實(shí)例詳解
- JS封裝cookie操作函數(shù)實(shí)例(設(shè)置、讀取、刪除)
- JS使用cookie實(shí)現(xiàn)DIV提示框只顯示一次的方法
- 通過Jquery.cookie.js實(shí)現(xiàn)展示瀏覽網(wǎng)頁(yè)的歷史記錄超管用
- JS利用cookie記憶當(dāng)前位置的防刷新導(dǎo)航效果
- JS基于cookie實(shí)現(xiàn)來(lái)賓統(tǒng)計(jì)記錄訪客信息的方法
- 詳談javascript中的cookie
- js簡(jiǎn)單設(shè)置與使用cookie的方法
相關(guān)文章
微信小程序?qū)崿F(xiàn)多選框全選與取消全選功能示例
這篇文章主要介紹了微信小程序?qū)崿F(xiàn)多選框全選與取消全選功能,結(jié)合實(shí)例形式分析了微信小程序多選框功能實(shí)現(xiàn)、布局顯示及全選、取消全選相關(guān)操作技巧,需要的朋友可以參考下2019-05-05原生JavaScript實(shí)現(xiàn)的簡(jiǎn)單省市縣三級(jí)聯(lián)動(dòng)功能示例
這篇文章主要介紹了原生JavaScript實(shí)現(xiàn)的簡(jiǎn)單省市縣三級(jí)聯(lián)動(dòng)功能,結(jié)合完整實(shí)例形式分析了javascript聯(lián)動(dòng)菜單的實(shí)現(xiàn)方法,涉及javascript事件響應(yīng)及頁(yè)面元素動(dòng)態(tài)操作相關(guān)實(shí)現(xiàn)技巧,需要的朋友可以參考下2017-05-05IE 下Enter提交表單存在重復(fù)提交問題的解決方法
這篇文章主要介紹了IE 下Enter提交表單存在重復(fù)提交問題的解決方法,需要的朋友可以參考下2014-05-05淺析JavaScript中break、continue和return的區(qū)別
這篇文章主要介紹了JavaScript中break、continue和return的區(qū)別,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下2016-11-11JavaScript數(shù)組中reduce方法的應(yīng)用詳解
JavaScript 中的reduce()方法可以用于將數(shù)組元素匯總為單個(gè)值,,所以本文為大家整理了一些JavaScript數(shù)組中reduce方法的應(yīng)用,需要的可以參考一下2023-07-07微信小程序云開發(fā)如何實(shí)現(xiàn)數(shù)據(jù)庫(kù)自動(dòng)備份實(shí)現(xiàn)
這篇文章主要介紹了小程序云開發(fā) 數(shù)據(jù)庫(kù)自動(dòng)備份實(shí)現(xiàn)過程解析,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2019-08-08