1、創建cookie
Js代碼
function setCookie(c_name,value,expiredays)//參數為姓名、值、過期日期
{
var exdate=new Date()
exdate.setDate(exdate.getDate()+expiredays) //將天數轉換成有效地日期
document.cookie=c_name+ "=" +escape(value)+
((expiredays==null) ? "" : ";expires="+exdate.toGMTString()) //將姓名、值、過期日期存到cookie對象中
}
2、創建一個函數檢查是否存在cookie
Js代碼
function getCookie(c_name)//獲取cookie中的姓名
{
if (document.cookie.length>0)//判斷cookie是否存在
{
c_start=document.cookie.indexOf(c_name + "=")//cookie存在 獲取傳來的姓名首次出現的位置
if (c_start!=-1)//indexOf()下標從0開始
{
c_start=c_start + c_name.length+1
c_end=document.cookie.indexOf(";",c_start)
if (c_end==-1) c_end=document.cookie.length//下標為-1
return unescape(document.cookie.substring(c_start,c_end))
//unescape() 函數可對通過 escape() 編碼的字符串進行解碼
// substring() 方法用於提取字符串中介於兩個指定下標之間的字符
}
}
return ""
}
3、創建一個函數:若cookie存在 則顯示歡迎xxx,否則顯示提示框提示用戶輸入姓名
Js代碼
function checkCookie()
{
username=getCookie('username')//獲取cookie中的姓名
if (username!=null && username!="")//判斷姓名是否為空
{alert('Welcome again '+username+'!')}
else
{
username=prompt('Please enter your name:',"")
if (username!=null && username!="")
{
setCookie('username',username,365)//setcookie() 函數向客戶端發送一個 HTTP cookie
cookie名稱,cookie的值 , cookie的有效期
}
}
}