Ejemplo 1: ocultar y mostrar en angular 8
<button (click)="toggleShow()" type="checkbox" >show/hide</button>
<div *ngIf="isShown" class="row container-fluid" id="divshow" >
Div Content
</div>
Ejemplo 2: ocultar y mostrar en angular 8
isShown: boolean = false ; // hidden by default
toggleShow() {
this.isShown = ! this.isShown;
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)