我的开发环境中本地工作的Bootstrap轮播存在问题,但移动到外部服务器时无法正常工作。我被告知要更改HTML文件中文件的顺序,以便JQuery在Bootstrap之后:
<!DOCTYPE HTML>
<html>
<head>
<title></title>
<meta charset="utf-8">
<link href="style.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script src="modernizr-latest.js" type="text/javascript"></script>
</head>
这有时工作ans显示轮播,但随后轮播不移动,控制台说:“未捕获的错误:Bootstrap的JavaScript需要jQuery”。我看到人们建议再次切换文件顺序以解决问题(这显然让我回到第一个问题)。
有什么想法吗?
答案 0 :(得分:1)
在bootstrap之前调用Jquery
订单应
<script src="https://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>