我经常在没有询问的情况下找到答案,而不是这次。已经好几天了,所以我想我会问。
我在下面的html代码:
非常感谢任何帮助。
<!DOCTYPE html>
<html>
<head>
<!-- Import all the necessary stylesheets-->
<meta name="viewport" content ="width=device-width, inital-scale=1.0">
<meta charset="utf-8">
<title>This is the title</title>
<link rel="stylesheet" href="css/bootstrap.css" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
<link href="css/styles.css" media="screen" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="fonts/font-awesome/css/font-awesome.min.css">
<!--<link href="//cdn-images.mailchimp.com/embedcode/slim-081711.css" rel="stylesheet" type="text/css">-->
<!-- <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> -->
<style type="text/css">
html, body {
font-family: "Lato";
height: 100%;
margin-bottom: 100px;
}
</style>
</head>
<body>
<!--Navigation bar-->
<div class="row-fluid">
<div class = "navbar navbar-inverse navbar-fixed-top">
<div class = "container">
<a href = "#" class = "navbar-brand">brand</a>
<!--Collapse menu with three lines-->
<button type = "button" class = "navbar-toggle" data-toggle = "collapse" data-target = ".navHeaderCollapse">
<span class = "icon-bar"></span>
<span class = "icon-bar"></span>
<span class = "icon-bar"></span>
</button>
<!--Actual menu-->
<div class ="collapse navbar-collapse navHeaderCollapse">
<ul class = "nav navbar-nav navbar-right">
<li class = "active"><a href = "#">Home</a></li>
<li><a href = "#">Blog</a></li>
<li><a href = "#">About</a></li>
<li><a href = "#contact">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
<!--<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>-->
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<!--<script src=”js/bootstrap.js”></script>-->
<script src=”js/bootstrap.min.js”></script>
<script type="text/javascript" src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<!--use code below to check if javasciprt library loaded-->
<!--<script type="text/javascript">
if (typeof jQuery != 'undefined') {
alert("jQuery library is loaded!");
}else{
alert("jQuery library is not found!");
}
</script>-->
</body>
</html>
这是jsfiddle工作的地方 - http://jsfiddle.net/moseslo/D2Gsa/1/
答案 0 :(得分:0)
修正错误的撇号:
<script src=”js/bootstrap.min.js”></script>
为什么要两次加载bootstrap.min.js?
答案 1 :(得分:0)
尝试在此处仅使用一个Bootstrap JS版本,因此您可以删除:
<script src=”js/bootstrap.min.js”></script>
并且只保留:
<script type="text/javascript" src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
答案 2 :(得分:0)
有两种可能性,应该在控制台上显示错误:
<script src=”js/bootstrap.min.js”></script>
file://
方案查看您的页面。无论如何,下面的固定代码:
<!DOCTYPE html>
<html>
<head>
<!-- Import all the necessary stylesheets-->
<meta name="viewport" content ="width=device-width, inital-scale=1.0">
<meta charset="utf-8">
<title>This is the title</title>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
<link href="css/styles.css" media="screen" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.0.3/css/font-awesome.min.css">
<!--<link href="//cdn-images.mailchimp.com/embedcode/slim-081711.css" rel="stylesheet" type="text/css">-->
<!-- <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> -->
<style type="text/css">
html, body {
font-family: "Lato";
height: 100%;
margin-bottom: 100px;
}
</style>
</head>
<body>
<!--Navigation bar-->
<div class="row-fluid">
<div class = "navbar navbar-inverse navbar-fixed-top">
<div class = "container">
<a href = "#" class = "navbar-brand">brand</a>
<!--Collapse menu with three lines-->
<button type = "button" class = "navbar-toggle" data-toggle = "collapse" data-target = ".navHeaderCollapse">
<span class = "icon-bar"></span>
<span class = "icon-bar"></span>
<span class = "icon-bar"></span>
</button>
<!--Actual menu-->
<div class ="collapse navbar-collapse navHeaderCollapse">
<ul class = "nav navbar-nav navbar-right">
<li class = "active"><a href = "#">Home</a></li>
<li><a href = "#">Blog</a></li>
<li><a href = "#">About</a></li>
<li><a href = "#contact">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
<!--<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>-->
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<!--<script src=”js/bootstrap.js”></script>-->
<script type="text/javascript" src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<!--use code below to check if javasciprt library loaded-->
<!--<script type="text/javascript">
if (typeof jQuery != 'undefined') {
alert("jQuery library is loaded!");
}else{
alert("jQuery library is not found!");
}
</script>-->
</body>