我正在使用骨干,bootstrap“崩溃”。我试图在单击按钮时更改类..
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)
}
答案 0 :(得分:0)
你没有给我足够的信息以确定这是正确的,但试试这个:
$(event.target).find('i').toggleClass('icon-down icon-right')