2008年12月10日星期三

JQuery cookie plug-in

演示 :
http://www.cssrain.cn/demo/jquery-cookie/demo1.html

下载 :
http://www.cssrain.cn/demo/jquery-cookie/jquery.cookie.js

程序代码 程序代码
提供方便方法操作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

// Get the value of a cookie:
$.cookie('sampleCookie');
 
// Create (or update) the value of a cookie:
$.cookie('sampleCookie', 'cookieValue');
 
//Create (or update) the value of a cookie to expire in 2 days:
$.cookie('sampleCookie', 'cookieValue', { expires: 2 });
 
// Delete a cookie:
$.cookie('sampleCookie', null);

没有评论: