angular 7 ng-modelおよびng-hideを使用してdivを表示/非表示にしようとしていますが、機能しません。
button
to show/Hide- used ng-model
式を設定します
<button type="checkbox" ng-model="show" >show/hide</button>
div
表示/非表示、使用済みng-hide
div
を非表示にします
<div class="row container-fluid" ng-hide="show" id="divshow" >
Div Content
</div>
</body>
</html>
私が試してみました ng-model
およびng-hide
まだ機能していません。解決策を提供してください
type='checkbox'
を使用している場合は、change
イベントハンドラーを使用できます。
<input type="checkbox" (change)="show = !show" ng-model="show" />
Div to Show/Hide
<div class="row container-fluid" *ngIf="show" id="divshow" >
Div Content
</div>
tsファイルではフラグを使用する必要があります。デフォルトでは、フラグはfalseです。
<button type="checkbox" (click)="flag= !flag">{{falg=== true ? 'Show' : 'Hide'}}</button>