jquery.cookie.js 的使用

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

下载地址:http://download.csdn.net/detail/qq450787302/7232749#comment

上一篇:zzy:java采用的是16位的Unicode字符集作为编码方式------理解


下一篇:[deviceone开发]-仿微信应用(一):框架搭建