5
我正在一個角度4項目,我需要創建一個結構,其中有三個複選框。一旦第一個複選框被選中,一個選項卡應該被偶然地創建,所以通過這個邏輯,如果我選擇它們全部三個,那麼將會有三個選項卡,這個問題我被困在它如下:我需要在任何時間點,一個選項卡被選中,所以可以說,如果第一個複選框被選中,那麼應該預先選擇第一個選項卡,如果第一個複選框未被選中,那麼第二個選項卡應該被選中..任何幫助這個方面將非常感激。謝謝!如何從動態標籤中預先選擇第一個標籤?
爲了更好地理解我創造了一個plunker例如: https://plnkr.co/edit/2UPBf67y2ExmLaePP3VV?p=preview
HTML代碼:
<div *ngFor="let industry of industries">
<input type="checkbox" (change)="onIndustryChange($event.target.checked, industry.id)">
<span>{{industry?.name}}</span>
</div>
<div class="tab-wrapper">
<ul class="nav nav-tabs app-tab-menu">
<ng-container *ngFor="let industry of industries">
<li *ngIf="isIndustrySelected(industry.id)">
<a href="#industry_{{industry.id}}" data-toggle="tab">{{industry?.name}}</a>
</li>
</ng-container>
</ul>
<div class="tab-content">
<ng-container *ngFor="let industry of industries">
<div class="tab-pane" id="industry_{{industry.id}}" *ngIf="isIndustrySelected(industry.id)">
<span>{{industry.name}}</span>
</div>
</ng-container>
</div>
我不想在索引的基礎上做到這一點。它不滿足我的要求。我已經用笨重的例子來解釋它。 –
因爲我們有一個來自所有選項卡的數組正在構建。所以只有標籤隱藏show,但數組和索引保持不變。這就是爲什麼基於索引的選擇不滿足我的要求。 –