2016-09-01 3 views
0

эй, я пытаюсь использовать бутстрап, чтобы создать раскрывающийся список и рушится, но он вообще не работает. предполагаемый контент не отображается при нажатии. Хотя я скопировал код непосредственно из школ w3. в чем именно проблема?: Я загрузил и сохранил jQuery в той же папке, что и мой html-файл.bootstrap collapsing not working

      <head> 
    <script src="jQuery.js"></script> 
    <script src="bootstrap.js"></script> 
    <link rel="stylesheet" href="bootstrap.css"> 
    <title>Bootsrap</title> 
    <meta charset="UTF-8"> 
</head> 

      <button data-toggle="collaspe" data- target="#demo">Collapsible</button> 
     <div id="demo" class="collapse"> 
      some will say that the way to go about doing some of the real things is by 
      doing it by the book to avoid some of the boring things that are said in the 
      latter age of the new and humble heritage of the monk of the new age. 
     </div> 

я actualy есть загрузочный CSS и JS импортированная в thesame папки с моей HTML плюс JQuery тоже.

+0

вы импортировать CSS и JS файлы для boostrap? можете ли вы добавить код? –

+0

Я сделал именно это – pedroyanky

ответ

0

Вы включаете jquery js перед загрузкой js?

в вашей консоли браузера (tools tool) можете ли вы видеть, что эти файлы включают в себя правильно?

+0

Это должен быть комментарий, а не ответ. http://meta.stackexchange.com/questions/214173/why-do-need-50-reputation-to-comment-what-can-i-do-instead – ZimSystem

2

Typo. Изменение data-toggle="collaspe" к data-toggle="collapse", и убедитесь, что ваш <button> является type="button"

<button type="button" data-toggle="collapse" data-target="#demo">Collapsible</button> 
<div id="demo" class="collapse"> 
    some will say that the way to go about doing some of the real things is by 
    doing it by the book to avoid some of the boring things that are said in the 
    latter age of the new and humble heritage of the monk of the new age. 
</div> 

Bootply

+0

где опечатка? я действительно не вижу ни одного – pedroyanky

+0

Испытайте себя. Продолжайте пристально смотреть. – ZimSystem