bootstrap collapse: change display of toggle button icons and text

后端 未结 5 1054
[愿得一人]
[愿得一人] 2021-01-01 23:15

I am using Twitter Bootstrap to create collapsible sections of text. The sections are expanded when a + button is pressed. My html code as follows:

Demo link

5条回答
  •  萌比男神i
    2021-01-01 23:36

    If you're using jQuery then make use of toggleClass

    $('div.toggler').click(function(){
      $('div.toggler span').toggleClass('glyphicon-chevron-down glyphicon-chevron-up');
    });
    

    Working JSFiddle here

提交回复
热议问题