jquery note

each 遍歷cookie

$("button").click(function(){
  $("li").each(function(){
    alert($(this).text())
  });
});

cookie 設置ide

$.cookie('cookieName', 'cookieValue', { expires: 7, path: '/' });

添加,刪除樣式類this

$(this).parent().removeClass("left-off")
 $(this).parent().addClass("left-full");

顯示,隱藏code

$(this).find("div").show();
 $(this).find("div").hide();
相關文章
相關標籤/搜索