0

我試圖讓一個引導下拉工作。我試圖幾乎完全按照The Angular UI page的代碼。它不工作。試圖讓ui.bootstrap下拉工作

我有一個Plunker here。這裏是不工作的代碼:

<table> 
     <tr> 
     <td align="center" class="give-store-button-group dropdown"> 
      <a href class="dropdown-toggle" dropdown-toggle="">{{backslaps[current].store}}</a> 
      <ul class="dropdown-menu"> 
      <li ng-repeat="store in backslaps"> 
       <a href>{{store.store}}</a> 
      </li> 
      </ul> 
     </td> 
     </tr> 
    </table> 

謝謝你的任何幫助。

回答

1

您需要放置一個包含dropdown屬性指令的容器。

<span class="dropdown" dropdown> 
       <a href class="dropdown-toggle" dropdown-toggle="">{{backslaps[current].store}}</a> 
       <ul class="dropdown-menu"> .... </ul> 
</span> 

入住此更新plunker