为什么我的bootstrap导航栏没有显示活动按钮?

时间:2017-07-12 14:15:10

标签: javascript html css asp.net bootstrap-4

what the navbar looks like

我第一次尝试使用bootstrap,我知道我需要链接头部的js和样式表,这是在母版页btw。我这样做了,并且它应该将活动类设置为单击的页面。我不确定我做错了什么,抱歉,如果这有一个我不知道的简单解决方案。

<head runat="server">
<title></title>
<link href="Style/css/bootstrap.css" rel="stylesheet" />
<script src="Style/js/bootstrap.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.js"></script>
<asp:ContentPlaceHolder id="head" runat="server">
</asp:ContentPlaceHolder>

https://pastebin.com/nBKYaRzh

这段代码不能在这里正确格式化,所以我不得不将它发布在pastebin上。

1 个答案:

答案 0 :(得分:0)

<nav class="navbar-default menu">
      <div class="container-fluid">
        <div class="navbar-header">
            <a class="navbar-brand">Shittalk.tf</a>
         </div>
       <ul class="nav navbar-nav">
         <li class="active" ><a href="#">Home</a></li>
         <li><a href="#">About</a></li>
         <li><a href="#">Donate</a></li>
       </ul>
      </div>
</nav>

<script type="text/javascript">
  $(document).ready(function(){
   $('.menu li').click(function(e) {
   console.log("hello")
   var $this = $(this);

   $("li").removeClass("active")
   $this.addClass('active');
  e.preventDefault();
  });
 });
  </script>

别忘了为此添加Bootstrap和jQuery。 working example