Open all accordion windows at the same time

后端 未结 3 566
深忆病人
深忆病人 2021-01-21 17:30

I am using jQuery accordion plugin for my application. Is there a way to open sections at the same time(after page has loaded) so that contents of all pages are shown at the sam

3条回答
  •  攒了一身酷
    2021-01-21 18:08

    jQuery makes it very easy to make your own accordion without a plugin. For example, this HTML:

    Section One
    ..... content here ......

    and this jQuery:

    $('.accordion_toggler').click(function() {
        $(this).next('.accordion_content').slideToggle();
    });
    

    Any time you click on an accordion_toggler , the following accordion_content will toggle (slide up or down in this case). To start with all the content hidden but allow multiple to be open at the same time, use this CSS:

    .accordion_content { display: none }
    

提交回复
热议问题