当我在上一页专门按下它们时,如何打开信息栏以向下滑动

时间:2014-03-12 13:31:45

标签: javascript jquery

当我点击上一页的按钮时,我想打开一个。

这是代码Fiddle

   $(document).ready(function () {
    if (window.location.hash) {
        $(window.location.hash).show(); // <--this should work now.
    }
    $("h3.open-close").click(function () {
        if ($(this).is(".current")) {
            $(this).removeClass("current");
            $(this).next(".desc").slideToggle(400);
        } else {
            $(".desc").slideUp(4.00);
            $("h3.open-close").removeClass("current");

            $(this).addClass("current");
            $(this).next(".desc").slideToggle(400);
        }
    });
   });

0 个答案:

没有答案