使用Angular 4下载Bootstrap V4

时间:2018-02-14 06:35:38

标签: twitter-bootstrap bootstrap-4

在使用bootstrap V3实现Dropdown的Angular 4中,我们正在使用" Open"用于在单击时显示下拉菜单的类。请建议当我们点击下拉标题时,是否有任何类在Bootstrap V4中显示下拉菜单。

1 个答案:

答案 0 :(得分:0)

是的,你可以使用这种格式

<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" 
id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-
expanded="false">
Dropdown button
</button>
  <div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
    <a class="dropdown-item" href="#">Action</a>
    <a class="dropdown-item" href="#">Another action</a>
    <a class="dropdown-item" href="#">Something else here</a>
  </div>
</div>