javascript js cookie的儲存,擷取和刪除_javascript技巧

來源:互聯網
上載者:User
使用方法:

//1、儲存Cookie
//2、參數說明: 1、參數1:Cookie儲存Name,參數2:Cookie要儲存的值
//3、例子如下:
setCookie('Method',match);

//1、擷取Cookie
//2、參數說明: 1、參數1:Cookie儲存的Name
//3、例子如下:
getCookie('Method')

//1、刪除Cookie
//2、參數說明: 1、參數1:Cookie儲存的Name
//3、例子如下:
deleteCookie('Method');

函數如下:

複製代碼 代碼如下:

<script language=javascript> 
/**//************************************************************************ 
|    函數名稱: setCookie                                                | 
|    函數功能: 設定cookie函數                                            | 
|    入口參數: name:cookie名稱;value:cookie值                        | 
|    維護記錄: Spark(建立)                                            | 
|    著作權: (C) 2006-2007 北京東方常智科技有限公司                    | 
|    編寫時間: 2007年9月13日 21:00                                        | 
*************************************************************************/ 
function setCookie(name, value)  
...{  
   var argv = setCookie.arguments;  
   var argc = setCookie.arguments.length;  
   var expires = (argc > 2) ? argv[2] : null;  
   if(expires!=null)  
   ...{  
       var LargeExpDate = new Date ();  
       LargeExpDate.setTime(LargeExpDate.getTime() + (expires*1000*3600*24));          
   }  
   document.cookie = name + "=" + escape (value)+((expires == null) ? "" : ("; expires=" +LargeExpDate.toGMTString()));  

/**//************************************************************************ 
|    函數名稱: getCookie                                                | 
|    函數功能: 讀取cookie函數                                            | 
|    入口參數: Name:cookie名稱                                            | 
|    維護記錄: Spark(建立)                                            | 
|    著作權: (C) 2006-2007 北京東方常智科技有限公司                    | 
|    編寫時間: 2007年9月13日 21:02                                        | 
*************************************************************************/ 
function getCookie(Name)  
...{  
   var search = Name + "="  
   if(document.cookie.length > 0)  
   ...{  
       offset = document.cookie.indexOf(search)  
       if(offset != -1)  
       ...{  
           offset += search.length  
           end = document.cookie.indexOf(";", offset)  
           if(end == -1) end = document.cookie.length  
           return unescape(document.cookie.substring(offset, end))  
       }  
       else return ""  
   }  
}  

/**//************************************************************************ 
|    函數名稱: deleteCookie                                            | 
|    函數功能: 刪除cookie函數                                            | 
|    入口參數: Name:cookie名稱                                        | 
|    維護記錄: Spark(建立)                                        | 
|    著作權: (C) 2006-2007 北京東方常智科技有限公司                | 
|    編寫時間: 2007年9月15日 18:10                                    | 
*************************************************************************/     
function deleteCookie(name)  
...{  
                    var expdate = new Date();  
                    expdate.setTime(expdate.getTime() - (86400 * 1000 * 1));  
   setCookie(name, "", expdate);  
}  
</script>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.