2016-05-09 41 views

回答

0

可以使用<ion-nav-buttons class="button-bar"></ion-nav-buttons>指令添加按鈕,以便在您的屏幕截圖中提到的每個選項卡。

<ion-nav-buttons class="button-bar" side="left"> 
    <a class="button" 
    ui-sref-active-eq="active" 
    ui-sref="path1"> 
    Label 1 
    </a> 
    <a class="button" 
    ui-sref-active-eq="active" 
    ui-sref="path2"> 
    Label 2 
    </a> 
    <a class="button" 
    ui-sref-active-eq="active" 
    ui-sref="path3"> 
    Label 3 
    </a> 
</ion-nav-buttons> 

ui-sref-active指令沿ui-sref可以確保與激活狀態的標籤處於焦點

+0

OK讓我來試試這個,回來 – lakhassane