2014-03-03 144 views
0

我看過以前的問題並移動了其他東西,但它似乎不起作用。我在考慮引用引導腳本和鏈接時有什麼問題。我已經在迭代中取出了東西,但它尚未解決問題。謝謝您的幫助。Bootstrap中的下拉菜單將不起作用

<! DOCTYPE html> 
<html> 
<head> 
<title>Austin Band Map</title> 
<meta name="viewport" content="width=device-width, initial-scale=1.0"> 

    <link href = "bootstrap.min.css" rel = "stylesheet"> 
    <link href = "css/styles.css" rel = "stylesheet"> 
    <link href="css/bootstrap.min.css/navbar-static-top.css" rel="stylesheet"> 

    <link href="BootStrap.css" rel="stylesheet" /> 
    <link href="css/bootstrap.css" rel="stylesheet"> 
</head> 

    <body> 
    <div> 
    <img border="0" src="MapBlueprint.jpg" width="1000" height="600"> 

    <div/> 
    <div class="navbar navbar-fixed-bottom navbar-inverse" role="navigation"> 
     <div class="container"> 
     <div class="navbar-header"> 
      <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> 
      <span class="sr-only">Toggle navigation</span> 
      <span class="icon-bar"></span> 
      <span class="icon-bar"></span> 
      <span class="icon-bar"></span> 
      <span class="icon-bar"></span> 
      <span class="icon-bar"></span> 
      </button> 
      <a class="navbar-brand" href="home.html">Austin Band Map</a> 
     </div> 
     <div class="collapse navbar-collapse"> 
      <ul class="nav navbar-nav"> 
      <li><a href="about.html">About</a></li> 
      <li><a href="contact.html">Contact</a></li> 
      <li><a href="listview.html">List View</a></li> 
      <li><a href="login.html">Login</a></li> 
    <!-- <div class="dropdown"> --> 
      <li class ="dropdown">  
       <a href = "" class = "dropdown-toggle" data-toggle = "dropdown">Austin Venues<b class="caret"></b></a> 
       <ul class = "dropdown-menu"> 
        <li><a href = "#">Antone's</a></li> 
        <li><a href = "#">Austin 360</a></li> 
        <li><a href = "#">Austin Music Hall</a></li> 
        <li><a href = "#">The Backyard</a></li> 
        <li><a href = "#">Bass Concert Hall</a></li> 
        <li><a href = "#">Emo's</a></li> 
        <li><a href = "#">Festivals</a></li> 
        <li><a href = "#">Frank Erwin Center</a></li> 
        <li><a href = "#">Hole In The Wall</a></li> 
        <li><a href = "#">Lambert's</a></li> 
        <li><a href = "#">Mohawk</a></li> 
        <li><a href = "#">Parish</a></li> 
        <li><a href = "#">Red 7</a></li> 
        <li><a href = "#">Stubb's</a></li> 
       </ul> 
      </li> 
      </ul> 
     </div><!-- /.nav-collapse --> 
     </div><!-- /.container --> 
    </div><!-- /.navbar --> 

    <!-- Bootstrap core JavaScript 
    ================================================== --> 
    <!-- Placed at the end of the document so the pages load faster --> 
    <script src="https://code.jquery.com/jquery-1.10.2.min.js"></script> 
    <script src="js/jquery.js"></script> 
    <script src="js/bootstrap.min.js"></script> 


    </body> 
</html> 
+1

你爲什麼包括jQuery的兩倍? – Sebsemillia

回答

0

嘗試了這一點

<!--Javascript dependencies and other libraries such as jquery UI--> 
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> 
    <script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.1.min.js"> 
    <\/script>');</script> 
+0

而不是以前的腳本我有底部? – user2965682

相關問題