0

我正在使用主干,引导程序“崩溃”。单击按钮时,我正在尝试更改类..

html

<button id="btnCollapse" class="btn"  type="button">
    <i id="accordionIcon-{{id}}" class="icon-down"></i>
</button>

js

CollapsePress : function(event) {

    //change the class back and forth with every click (icon-down to icon-right)
}
4

1 回答 1

0

你没有给我足够的信息来确保这是正确的,但试试这个:

$(event.target).find('i').toggleClass('icon-down icon-right')
于 2012-11-04T23:41:01.653 回答