Bootstrap 4折叠不适用于jquery 3.2.1

时间:2018-01-20 10:36:31

标签: jquery bootstrap-4 collapse

我从bootstrapCDN下载了最后一个bootstrap 4.0

<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>

我正在尝试做一个简单的例子,但它不起作用,没有任何错误:

#container-photo {
    width: 950px;
    height: 700px;
    background-color: #d4f2ae;
}

<div class="text-center">
    <h1>The first</h1>
    <button type="button" class="btn btn-success btn-lg" data-toggle="collapse" data-target="#container-photo">GO</button>
    <div id="container-photo" class="collapse">
        <img>
        <img>
    </div>  
</div>

我在控制台中也有这个错误:

enter image description here

您必须首先加载jquery.js然后再加载bootstrap.js

0 个答案:

没有答案