each 遍历
$("button").click(function(){
$("li").each(function(){
alert($(this).text())
});
});
cookie 设置
$.cookie('cookieName', 'cookieValue', { expires: 7, path: '/' });
添加,删除样式类
$(this).parent().removeClass("left-off")
$(this).parent().addClass("left-full");
显示,隐藏
$(this).find("div").show();
$(this).find("div").hide();