0

当我 slideToggle 我拥有的简单手风琴时,我想根据手风琴是打开还是关闭来更改链接元素的类和包装整个手风琴的.revealBox div

我的jQuery是

$(document).ready(function() {
    // choose text for the show/hide link - can contain HTML (e.g. an image)
    var showText = 'Hide Information';
    var hideText = 'Show Information';
    var is_visible = false;
    $('.collapseLink').append('<span class="dottedBot">' + showText + '</span>');
    $('.revealBoxContents').show();
    $('a.collapseLink').click(function() {
        // switch visibility
        is_visible = !is_visible;
        // change the link depending on whether the element is shown or hidden
        $(this).html((!is_visible) ? showText : hideText);
        // toggle the display - uncomment the next line for a basic "accordion" style
        //$('.toggle').hide();$('a.toggleLink').html(showText);
        $(this).parent().next('.revealBoxContents').slideToggle('slow');
        // return false so any link destination is not followed
        return false;
    });
    // toggle the bottom link
    $('.collapseLink').click(function() {
        $(this).parents('.revealBoxContents').stop(true, true).slideToggle('slow');
        $(".collapseLink").html((!is_visible) ? showText : hideText);
        $(this).parent('.item').toggleClass('current');

    });
});

我的网址是

http://satbulsara.com/NSJ-local/eqs1.htm

谢谢,

星期六

4

2 回答 2

3

您想在元素上使用 addClass() 函数。

http://api.jquery.com/addClass/

您也可以使用 jQuery 文档中看到的 toggleClass() 来做到这一点:

$('div.foo').toggleClass(function() {
      if ($(this).parent().is('.bar')) {
        return 'happy';
      } else {
        return 'sad';
      }
});

http://api.jquery.com/toggleClass/

于 2011-05-24T17:05:46.987 回答
1

您可以使用 jquery 的addClass()removeClass()来添加和删除类。

于 2011-05-24T17:16:06.530 回答