jquery cookie插件
官方和参数:https://github.com/carhartl/jquery-cookie
jquery.cookie.js提供了jquery中非常简单的操作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 $.cookie('the_cookie', 'the_value', {expires: 7, path: '/', domain: 'jquery.com', secure: true});//新建一个cookie 包括有效期 路径 域名等
jQuerycookie是个很好的cookie插件,大概的使用方法如下
example$.cookie(’name’,‘value’);
设置cookie的值,把name变量的值设为value
example$.cookie(’name’,‘value’,{expires:7,path:‘/’,domain:‘jquery.com’,secure:true});
新建一个cookie包括有效期路径域名等
example$.cookie(’name’,‘value’);
新建cookie
example$.cookie(’name’,null);
删除一个cookie
varaccount=$.cookie('name');
取一个cookie(name)值给myvar
相关推荐
houmenghu 2020-11-17
kentrl 2020-11-10
逍遥友 2020-10-26
jincheng 2020-09-01
Blueberry 2020-08-15
xclxcl 2020-08-03
zmzmmf 2020-08-03
阳光之吻 2020-08-03
PkJY 2020-07-08
hzyuhz 2020-07-04
89407707 2020-06-27
服务器端攻城师 2020-06-26
阳光岛主 2020-06-25
笨重的蜗牛 2020-06-20
xuanwenchao 2020-06-14
Lophole 2020-06-13
明瞳 2020-06-12
songerxing 2020-06-11