Bootstrap带下拉列表的选项卡

!DOCTYPE htmlhtmlheadtitleBootstrap Example/titlelink href = /bootstrap/css/bootstrap.min.css rel = stylesheet

编程学习网为您整理以下代码实例,主要实现:Bootstrap带下拉列表的选项卡,希望可以帮到各位朋友。

<!DOCTYPE HTML>
<HTML>
   <head>
      <Title>bootstrap Example</Title>
      <link href = "/bootstrap/CSS/bootstrap.min.CSS" rel = "stylesheet">
      <script src = "/scripts/jquery.min.Js"></script>
      <script src = "/bootstrap/Js/bootstrap.min.Js"></script>
   </head>
   <body style = "background: #FADBD8;">
      <h2>Website</h2>
      <ul class = "nav nav-tabs">
         <li class = "active"><a href = "#">Home</a></li>
         <li><a href = "#">About</a></li>
         <li class = "dropdown">
            <a class = "dropdown-toggle" data-toggle = "dropdown" href = "#">
               Products
               <span class = "caret"></span>
            </a>
            <ul class = "dropdown-menu">
               <li><a href = "#">Online Compiler</a></li>
               <li><a href = "#">Image Editor</a></li>
               <li><a href = "#">document VIEwer</a></li>
            </ul>
         </li>
         <li><a href = "#">Services</a></li>
         <li><a href = "#">Contact</a></li>
      </ul>
   </body>
</HTML>

本文标题为:Bootstrap带下拉列表的选项卡

基础教程推荐