我已经写了这个代码使用bootstrap使用折叠菜单。
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Up and Running with Bootstrap</title>
<link href="bootstrap/css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet" type="text/css">
<!-- HTML5 shim for IE backwards compatibility -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="navbar-inner">
<a class="brand" href="#">Roux Academy Conference</a>
<ul class="nav">
<li class="active"><a href="#">Home</a> </li>
<li><a href="#">The Artists</a></li>
<li><a href="#">The Art</a></li>
<li><a href="#">Schedule</a></li>
<li><a href="#">Venue</a></li>
<li><a href="#">Hotels</a></li>
</ul>
</div>
</nav>
<script type="text/javascript" src="bootstrap/js/jquery-1.9.0.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.js"></script>
</body>
</html>
这段代码必须在调整浏览器窗口大小时折叠列表项,但它在任何浏览器(FF、Chrome或IE)中都不起作用。
提前谢谢。
2条答案
按热度按时间sirbozc51#
没有使用正确的HTML来使导航栏响应。
我使用了www.example.com中的代码http://twitter.github.io/bootstrap/components.html#navs,并创建了:
只要链接了必要的JS/CSS,就可以实现所需的行为。
此处的工作代码:http://codepen.io/hwg/pen/gFLfz(全屏幕,仅限Chrome?)
或此处:http://www.bootply.com/65033(也包括IE)
tf7tbtn22#
您的html中有一些错误..
为折叠菜单添加以下内容:
为折叠菜单按钮添加此项
请尝试以下操作: