我的链接/脚本标签(提供缓存的 Bootstrap 版本)是不是正确? Bootstrap Carousel 拒绝滑动
Posted
技术标签:
【中文标题】我的链接/脚本标签(提供缓存的 Bootstrap 版本)是不是正确? Bootstrap Carousel 拒绝滑动【英文标题】:Are my link/script tags (to deliver cached Bootstrap versions) correct? Bootstrap Carousel refuses to slide我的链接/脚本标签(提供缓存的 Bootstrap 版本)是否正确? Bootstrap Carousel 拒绝滑动 【发布时间】:2019-12-14 14:44:46 【问题描述】:一切都按预期显示在屏幕上,除了链接到我的轮播中第一张幻灯片的图像(活动轮播项)是我重新加载时出现在我的网络应用程序上的唯一图像。当我单击下一个/上一个按钮时,除了返回到包含整个轮播的 div 的开头(在我的代码中,它的 id 是#carouselExampleIndicators)之外,什么都没有发生。
下面的轮播代码是从这个 Bootstrap 页面复制和粘贴的(只编辑了 src 值以链接到我计算机上的图像),用于检索 Bootstrap 4.3 的链接/脚本标签是从这个 Bootstrap 页面复制和粘贴的(在引导 CDN)。
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<!-- Carousel -->
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<img src="img/IMG_9840.JPG" class="d-block w-100" >
<div class="carousel-caption">
<h3>1st Pic</h3>
</div>
</div>
<div class="carousel-item">
<img src="img/IMG_9834.JPG" class="d-block w-100" >
<div class="carousel-caption">
<h3>2nd Pic</h3>
</div>
</div>
<div class="carousel-item">
<img src="img/IMG_9836.JPG" class="d-block w-100" >
<div class="carousel-caption">
<h3>3rd Pic</h3>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
<!-- jQuery first, then Bootstrap JS. -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
【问题讨论】:
【参考方案1】:你把 bootstrap-js
放在 jQuery 之前,改变它们的位置,看看魔法
【讨论】:
它崩溃了!非常感谢!以上是关于我的链接/脚本标签(提供缓存的 Bootstrap 版本)是不是正确? Bootstrap Carousel 拒绝滑动的主要内容,如果未能解决你的问题,请参考以下文章
如何将 Bootstrap 图标链接到 Ruby 上的链接?
无法在 Django 模板标签、Twitter Bootstrap 中嵌入 YouTube 链接