简体   繁体   English

单击时不会显示移动导航栏

[英]Mobile Navbar won't show when clicked

When viewing at mobile screen resolution and you select the mobile nav icon bar, nothing happens . 以移动屏幕分辨率查看并选择移动导航图标栏时, 没有任何反应 The desired effect is to have the same main navigation be used in mobile. 期望的效果是在移动设备中使用相同的主导航。 I have ensured my data-targets (mobile_nav) match, and that markup looks good, but am new to Bootstrap. 我确保我的数据目标(mobile_nav)匹配,并且标记看起来不错,但是对于Bootstrap来说是新的。 Any help appreciated! 任何帮助表示赞赏!

<!DOCTYPE html>
<html>
<head>
<title>Homepage</title>

<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">

<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">

<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>

<!-- Loading Fonts Awesome CDN from boostrapcdn.com -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">

</head>

<body>
<!-- add padding from best practices for fixed topbar navs -->
<header> 
        <div class="navbar navbar-default navbar-fixed-top">
            <div class="container">
                    <div class="navbar-header">
                        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#mobile_nav" >
                            <span class="icon-bar"></span>
                            <span class="icon-bar"></span>
                            <span class="icon-bar"></span>
                        </button>
                        <a href="" class="navbar-brand">Brand</a>
                    </div>
                    <div class="collapse navbar-collapse" id="mobile_nav">
                        <ul class="nav navbar-nav">
                            <li><a href="">Link 1</a></li>
                            <li><a href="">Link 2</a></li>
                        </ul>
                        <form action="" class="navbar-form navbar-right" role="search">
                            <div class="form-group">
                                    <input type="text" class="form-control" placeholder="Search">
                            </div>
                            <button type="submit" class="btn btn-primary">Submit</button>
                        </form>
                    </div>
            </div>
        </div>    
</header>    
</body>
</html>              

Bootstrap requires jQuery to work, you should include it before the Bootstrap JS in your HTML: Bootstrap需要jQuery才能工作,您应该在HTML中的Bootstrap JS之前包括它:

<!-- JQuery -->    
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM