jquery.cookie.js下载:
http://download.youkuaiyun.com/detail/qust_2011/7200145
//保存
var userId= 2889;
var info='age:22,name:april';
$.cookie(userId,info,{path:'/',expires:1});//保存一天到 当前路径
//获取
var info= $.cookie(userId);
//删除
var info= $.cookie(userId);
if(info!=null){
$.cookie(userId,null,{path:'/'});
}