0

我想用 jquery.cookie 保存手风琴菜单的状态(打开/关闭)。有人可以帮我设置cookie吗?

$('#menu').children('[data-header]').hide().each(function() {
    $(this).before('<h3 class="menu-header">' + $(this).data('header') + '</h3>');
}).prev().on("click", function() {
    $(this).toggleClass('on').next().slideToggle();
  });
4

1 回答 1

0

问题在这里解决了:http: //jsfiddle.net/tovic/EDQn9/12/
感谢来自 css-tricks.com 的 Hompimpa

于 2012-08-01T17:53:23.660 回答