我是网页设计的新手,我想在我用 Coda2 编写的一些 html 代码中使用 Bootstrap。我无权访问服务器,所以我使用硬盘驱动器上 css 文件的目录地址而不是网址。现在我的代码顶部如下所示:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sandbox</title>
<!-- Bootstrap -->
<link href="file:///Volumes/Disk/Users/skykalfus/Dropbox/coding_webdev/bootstrap-3.2.0-dist/css/bootstrap-theme.min.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="file:///Volumes/Disk/Users/skykalfus/Dropbox/coding_webdev/Sandbox/Sandbox%20Stylesheet.css" rel="Sandbox Stylesheet">
</head>
我制作的 css 样式表(代码的倒数第二行)工作正常,但我无法让 Bootstrap 工作。我做错了什么?
BuddhistBeast 是正确的。
要使 bootstrap 工作也需要 bootstrap javascript。而jQuery也是先决条件。
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
当然也可以指向本地的jquery.js文件。
我是一名优秀的程序员,十分优秀!