DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> js cookie使用方法詳解
js cookie使用方法詳解
編輯:JavaScript綜合知識     

 代碼如下

<script>
function getCookie(c_name){
if (document.cookie.length>0){ //先查詢cookie是否為空,為空就return ""
c_start=document.cookie.indexOf(c_name + "=") //通過String對象的indexOf()來

檢查這個cookie是否存在,不存在就為 -1 
if (c_start!=-1){
c_start=c_start + c_name.length+1 //最後這個+1其實就是表示"="號啦,這樣

就獲取到了cookie值的開始位置
c_end=document.cookie.indexOf(";",c_start) //其實我剛看見indexOf()第二個

參數的時候猛然有點暈,後來想起來表示指定的開始索引的位置...這句是為了得到值的結束位置。因為

需要考慮是否是最後一項,所以通過";"號是否存在來判斷
if (c_end==-1) c_end=document.cookie.length 
return unescape(document.cookie.substring(c_start,c_end)) //通過

substring()得到了值。想了解unescape()得先知道escape()是做什麼的,都是很重要的基礎,想了解的

可以搜索下,在文章結尾處也會進行講解cookie編碼細節
}
}
return ""
} 


function setCookie(c_name, value, expiredays){
var exdate=new Date();
exdate.setDate(exdate.getDate() + expiredays);
document.cookie=c_name+ "=" + escape(value) + "path=/;domain=45it.net" +

((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}


function sc(days)
{
setCookie('ashow','a',days);
document.getElementById('ad').style.display='none';
}

function gc()
{
if(getCookie('ashow')==1)
{
alert(getCookie('ashow'));
document.getElementById('ad').style.display='none';
}
}


</script>

<div id="ad">fdsafdsafdsafsda</div>
<script>
gc();
</script>
<a href="#" onclick="javascript:sc(1);">設置Cookie值</a>
<a href="#" onclick="javascript:gc();">獲取Cookie值</a>
<a href="#" onclick="javascript:sc(-1);">清除Cookie值</a>

 

自己調用 cookie的總結

path= 這個如果你沒有設置那麼你的cookie只能適用於當前目錄,如

http://www.3lian.net/php/phper.html如果我們在其它頁面如http://www.3lian.net/sj/ 這樣就獲取

不到這個目錄cookie值了

設置方法

path=/ 即可。

domain= 這個是設置域名了,如 我們設置的是www.3lian.net域名,沒設置我們只能在這個域名,那麼

二級域名就是無法讀取cookie值了。

設置

domain=3lian.net

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved