jquery.cookie.js的使用

来源:互联网 发布:xnview中文版官方 mac 编辑:程序博客网 时间:2024/05/01 08:18
$.cookie(‘the_cookie’); // 读取 cookie
$.cookie(‘the_cookie’, 'the_value’); // 存储 cookie
$.cookie(‘the_cookie’, 'the_value’, { expires: 7 }); // 存储一个带7天期限的 cookie
$.cookie(‘the_cookie’, '', { expires: -1 }); // 删除 cookie
原创粉丝点击