2012-11-04 2 views
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) 
} 

답변

0

... 버튼을 클릭 할 때 클래스를 변경하는 것을 시도하고있다 시도해보십시오.

$(event.target).find('i').toggleClass('icon-down icon-right') 
+0

위대한 작품입니다. 감사 – myTD

관련 문제