我正在尝试使用引导程序创建一个下拉按钮。但它只是不显示列表:
<div class="btn-group">
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
Action
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="#">Foo</a></li>
<li><a href="#">sad</a></li>
</ul>
</div>
引导程序和 css 文件:
<link href="<?php echo base_url();?>styles/style.css" rel="stylesheet" type="text/css" />
<link href="<?php echo base_url();?>styles/bootstrap-responsive.css" rel="stylesheet" type="text/css" />
<link href="<?php echo base_url();?>styles/bootstrap.css" rel="stylesheet" type="text/css" />
谢谢