Cookie操作插件 jQuery.Cookie
作者:情留メ蚊子 日期:2009-06-27
备份一下,以后开发都要用到哈哈。
项目主页(演示): http://stilbuero.de/jquery/cookie
下载地址: http://plugins.jquery.com/files/jquery.cookie.js.txt
复制内容到剪贴板
程序代码
程序代码jQuery操作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
$.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
项目主页(演示): http://stilbuero.de/jquery/cookie
下载地址: http://plugins.jquery.com/files/jquery.cookie.js.txt
评论: 1 | 引用: 0 | 查看次数: 2200
回复
|
| 取消审核]蚊子,能不能推荐一下JQury基础教程?
情留メ蚊子 于 2009-06-29 08:23 PM 回复
http://jquery-api-zh-cn.googlecode.com/svn/trunk/xml/jqueryapi.xml
发表评论
上一篇
下一篇

文章来自:
Tags:
相关日志: