2015-02-21 2 views
0

Я пытаюсь реализовать аккордеон бутстрапа с разборными элементами группы. Мне удалось отобразить его на моем сайте, но вкладки не открываются. Я связал bootstrap с моим html-файлом, добавил необходимые сценарии js к и скопировал и вставлял точно такой же код, что здесь предлагает документация http://getbootstrap.com/javascript/#collapseBootstrap Аккордеонные вкладки не открываются

Что мне не хватает?

   <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"> 
         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"> 
         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"> 
         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 --> 
+2

Добавьте свой код здесь ... –

+0

Эй @jQuery извините, что это так. – user3086706

+0

Есть ли сообщения об ошибках в консоли браузера? (Нажмите F12 в большинстве браузеров, чтобы увидеть его.) У нас были такие проблемы, вызванные ошибками в другом месте кода Javascript, которые препятствовали правильному функционированию функции expand/collapse. – GoBusto

ответ

1

Ваш код работает отлично я думаю, что вы не включили файлы правильно:

<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"> 
         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"> 
         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"> 
         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 --> 

Ссылка на jsffidle: http://jsfiddle.net/qs1aLxqc/

+0

Да, я не декларировал скрипт jquery правильно, просто понял, что он – user3086706

+0

Если ваш сайт в сети, отправьте нам ссылку на страницу, чтобы проверить проблему, если не поместите свой html-заголовок со списком включенного скрипта. – Abdooapps

+0

Все хорошо сейчас. Я обновил свои комментарии выше. Спасибо! – user3086706

0

Ваш код штраф here, проблема должна быть с ресурсы, которые могут быть неправильно настроены. пожалуйста, исправьте их bootstrap также нуждается в JQuery.

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