jQuery插件Cookie

jQuery插件---Cookie.作者:admin 日期:2008-04-08
字体大小: 小 中 大
演示 :
http://www.cssrain.cn/demo/jquery-cookie/demo1.html

下载 :
http://www.cssrain.cn/demo/jquery-cookie/jquery.cookie.js

 程序代码
提供方便方法操作cookie :
$.cookie('the_cookie'); // 获得cookie
$.cookie('the_cookie', 'the_value'); // 设置cookie
$.cookie('the_cookie', 'the_value', { expires: 7 }); //设置带时间的cookie
$.cookie('the_cookie', '', { expires: -1 }); // 删除
$.cookie('the_cookie', null); // 删除 cookie

原文地址:https://www.cnblogs.com/tangself/p/1886857.html