我想知道是否有人可以让我知道在使用 Twitter Bootstrap 时如何在 Jade 中创建下拉菜单。我目前有一个菜单,其中包含堆叠的导航药丸:
html
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
link(rel='stylesheet', href='/stylesheets/css/bootstrap.min.css')
include inc/header
body
h1.page-header= title
ul.nav.nav-pills.nav-stacked
li#home: a(href='/') Home Page
li#clear: a(href='/clear') Clear Blog Posts
li#load: a(href='/load') Load Sample Posts
li#list: a(href='/showContacts') Show Blog
li#add: a(href='/add') Add Blog Post
script.
$(document).ready(function() {
$(".active").removeClass("active");
$("##{tab}").addClass("active");
});
block content
我曾尝试使用 .dropdown 和 .dropdown_toggle 而不是 .nav-stacked,但是我对 Jade 和 bootstrap 比较陌生,所以不确定从那里去哪里以及如何创建下拉菜单?
谢谢