JS操作页面cookie

来源:互联网 发布:上海银行淘宝白金卡 编辑:程序博客网 时间:2024/06/04 18:50
$.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
0 0
原创粉丝点击