前端學習(2335):angular之內建結構指令ngif
child.html
<p>child4 works!</p>
<div class="us">我是歌謠</div>
<div [ngClass]="currentClass" class="col">我是歌謠</div>
<div *ngIf="true">aaaa</div>
<div *ngIf="false">bbbbb</div>
child.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-child4',
templateUrl: './child4.component.html',
styleUrls: ['./child4.component.css']
})
export class Child4Component implements OnInit {
currentClass(){
}
constructor() { }
ngOnInit(): void {
this.currentClass={
col:true
}
}
}
執行結果
相關文章
- Angular 4.0 內建指令全攻略Angular
- Angular學習(4)自定義指令Angular
- 044 內建指令總結
- 前端學習(2333):angular之元件傳值之子傳父前端Angular元件
- 前端學習(2332):angular之元件傳值之父傳子前端Angular元件
- 資料結構學習之樹結構資料結構
- (十六)Python學習之內建函式Python函式
- Angular 自定義結構型指令 structural directive 的使用AngularStruct
- ionic5+angular 中 modal的ngIf報錯Angular
- 不得不學之「 Gradle」 ③ 構建指令碼基礎Gradle指令碼
- Angular4學習(初始檔案目錄結構解讀)Angular
- @angular前端專案程式碼優化:構建Api TreeAngular前端優化API
- Python內建資料結構之雙向佇列Python資料結構佇列
- InnoDB學習(七)之索引結構索引
- SpringBoot學習之資料結構Spring Boot資料結構
- Linux內建指令Linux
- hive學習筆記之七:內建函式Hive筆記函式
- 前端學習之Bootstrap學習前端boot
- Gradle系列之構建指令碼基礎Gradle指令碼
- Vue 插槽之插槽內容學習總結Vue
- 資料結構學習之佇列資料結構佇列
- golang 學習之路之 struct 結構體GolangStruct結構體
- HBase學習之Hbase的邏輯結構和物理結構
- Python:內建資料結構_字串Python資料結構字串
- 2020-11-06前端學習之HTML結束前端HTML
- 前端學習之PHP基礎函式總結前端PHP函式
- Vue的內建指令Vue
- Python教程:Python內建資料結構之雙向佇列!Python資料結構佇列
- 前端學習之nuxtjs前端UXJS
- 前端學習有哪些建議?前端
- Python學習手冊之控制結構(二)Python
- java資料結構學習之陣列Java資料結構陣列
- Angular 專案裡 angular.json 檔案內容的學習筆記AngularJSON筆記
- Python學習筆記|Python之內建變數__name__Python筆記變數
- Python培訓:Python內建資料結構之雙向佇列Python資料結構佇列
- Python技術分享:內建資料結構之雙向佇列Python資料結構佇列
- 內建資料結構集合和字典資料結構
- Python內建資料結構--bytes、bytearrayPython資料結構