jQuery.cookie设置说明




jQuery Cookie Plugin






设置 cookie (设置有效期天数为 10 天)

设置 cookie (通过 date 对象设置过期日期为 3 天后的那天)

获取 cookie

删除 cookie

设置另一个 cookie

获取另一个 cookie

删除另一个 cookie



 

 

 

 

  $.cookie('the_cookie'); // get cookie
  $.cookie('the_cookie', 'the_value'); // set cookie
  $.cookie('the_cookie', 'the_value', { expires: 7 }); // set cookie with an expiration date seven days in the future
  $.cookie('the_cookie', '', { expires: -1 }); // delete cookie

 

 

$.cookie('the_cookie'); //读取Cookie值
$.cookie(’the_cookie’, ‘the_value’); //设置cookie的值
$.cookie(’the_cookie’, ‘the_value’, {expires: 7, path: ‘/’, domain: ‘jquery.com’, secure: true});//新建一个cookie 包括有效期 路径 域名等
$.cookie(’the_cookie’, ‘the_value’); //新建cookie
$.cookie(’the_cookie’, null); //删除一个cookie

你可能感兴趣的:(JavaScript,function,date,path,null,delete,domain)