码迷,mamicode.com
首页 > Web开发 > 详细

JS 操作 Cookie

时间:2015-12-24 20:50:23      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:

 1     function setCookie(name, value, day) {
 2         var oDate = new Date();
 3         oDate.setDate(oDate.getDate() + day);
 4         document.cookie = name + "=" + value + ";expires=" + oDate;
 5     }
 6 
 7     function getCookie(name) {
 8         var arr = document.cookie.split(‘; ‘);
 9         for (var i = 0; i < arr.length; i++) {
10             var arr2 = arr[i].split(‘=‘);
11             if (arr2[0] === name) {
12                 return arr2[1];
13             }
14         }
15         return ‘‘;
16     }
17 
18     function removeCookie(name) {
19         setCookie(name, "1", -1);
20     }

 

JS 操作 Cookie

标签:

原文地址:http://www.cnblogs.com/HuoAA/p/5074173.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!