2015-02-25 2 views
0

Я использую аккордеон Bootstrap, и мне нужна только одна вкладка, которая открывается одновременно. Интересно, что всякий раз, когда есть две вкладки рядом друг с другом, одна из них не закрывается. Этого не происходит, если, например, первый уже открыт, и вы попытаетесь открыть третий. Почему это происходит?Bootstrap Аккордеонные вкладки не сворачиваются

URL: http://fer.bitballoon.com/faq

   <div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true"><!-- begin accordion --> 
       <div class="panel panel-default"> 
       <div class="panel-heading" role="tab" id="headingOne"> 
        <h4 class="panel-title"> 
        <a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne"> 
         <span class="glyphicon glyphicon-plus"></span> Collapsible Group Item #1 
        </a> 
        </h4> 
       </div> 
       <div id="collapseOne" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne"> 
        <div class="panel-body"> 
        Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS. 
        </div> 
       </div> 
       </div> 
       <div class="panel panel-default"> 
       <div class="panel-heading" role="tab" id="headingTwo"> 
        <h4 class="panel-title"> 
        <a class="collapsed" data-toggle="collapse" data-parent="accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo"> 
         <span class="glyphicon glyphicon-plus"></span> Collapsible Group Item #2 
        </a> 
        </h4> 
       </div> 
       <div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo"> 
        <div class="panel-body"> 
        Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS. 
        </div> 
       </div> 
       </div> 
       <div class="panel panel-default"> 
       <div class="panel-heading" role="tab" id="headingThree"> 
        <h4 class="panel-title"> 
        <a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree"> 
         <span class="glyphicon glyphicon-plus"></span> Collapsible Group Item #3 
        </a> 
        </h4> 
       </div> 
       <div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree"> 
        <div class="panel-body"> 
        Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS. 
        </div> 
       </div> 
       </div> 
      </div><!-- end accordion --> 
+0

Опубликовано это как комментарий, потому что это ссылка. Будет полезно для тех, кто сталкивается с той же проблемой. http://www.w3schools.com/bootstrap/bootstrap_ref_js_collapse.asp –

ответ

1

Вы пропускаете (идентификатор id) # на второй вкладке

data-parent="accordion" должен быть data-parent="#accordion"

+0

Не могу поверить, что я пропустил это. Спасибо, это решило проблему! – user3086706

+0

Добро пожаловать! Пожалуйста, отметьте это как ответ, когда сможете! –

+0

спасибо :) иногда я скучаю по мелочам. – NeosFox

Смежные вопросы