0

我正在尝试添加一个更改到我的手风琴菜单的箭头。我相信我需要 Jquery 的 removeClass 功能。

目前我已经做到了这一点:

HTML/PHP:

<dl id="narrow-by-list">
            <?php $_filters = $this->getFilters() ?>
            <?php foreach ($_filters as $_filter): ?>
            <?php if($_filter->getItemsCount()): ?>
                <dt class=""><a href="/"><?php echo $this->__($_filter->getName()) ?></a></dt>
                <dd><?php echo $_filter->getHtml() ?></dd>
            <?php endif; ?>
            <?php endforeach; ?>
</dl>

查询:

<script type="text/javascript">
jQuery(document).ready(function(){
    jQuery("dl#narrow-by-list> dd:not(:first)").hide();
    jQuery("dl#narrow-by-list> dt a").click(function(){
        jQuery("dl#narrow-by-list> dd:visible").slideUp("fast");
        jQuery(this).parent().next().slideDown("fast");;

        return false;

        jQuery('.selected').removeClass('selected'); 
        thisObj.addClass('selected');
        var content = thisObj.parent().next();
        content.slideDown('fast');

        return false;
    });
});
</script>

CSS:

#narrow-by-list >  dt a {
    padding-left: 20px;
    background-image: url('/images/bullet.png');
    background-repeat:no-repeat;
    background-position: left center;
}
#narrow-by-list > dt a.selected{
    background-image: url('/images/bulletselected.png');
}

这一切都适用于手风琴菜单,并在顶级标题旁边添加图像。但是我不确定选择如何或为什么没有出现在 HTML 中或为我更改图像?有没有人知道我哪里出错了。我不完全理解 Jquery,你可能会说!

谢谢

4

1 回答 1

1
  jQuery(document).ready(function(){
        jQuery("dl#narrow-by-list> dt").first().addClass('selected'); 
        jQuery("dl#narrow-by-list> dd:not(:first)").hide();
        jQuery("dl#narrow-by-list> dd:not(:first)").hide();
        jQuery("dl#narrow-by-list> dt a").click(function(event){
           if(jQuery(this).parent().hasClass('selected'))
           {
               return false;
           }
           event.preventDefault();
           jQuery('.selected').removeClass('selected'); 
           jQuery(this).parent().addClass('selected'); 
           jQuery("dl#narrow-by-list> dd:visible").slideUp("fast");
           jQuery(this).parent().next().slideDown("fast");                      
           return false;
        });
    });

编辑 检查这个小提琴

于 2013-10-09T12:52:05.087 回答