@H_404_0@本文实例讲述了jquery.cookie.js用法。分享给大家供大家参考,具体如下:
@H_404_0@对cookies的操作在当访问一个网站就无时无刻的都伴随着我们,记录着我们的一举一动,并将不危害用户隐私的信息,将以保存,这样用户就不用去从新再次操作重复的步骤,这样大大方便了客户,也增加了客户对网站的回头率。
@H_404_0@jquery.cookie.js 提供了jquery中非常简单的操作cookie的方法。
<div class="jb51code">
<pre class="brush:js;">
$.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',{expires: 7,path: '/',domain: 'jquery.com',secure: true});//新建一个cookie 包括有效期 路径 域名等
@H_502_6@