如果存在另一个元素(稍后将动态填充),如何调整一个元素以显示/隐藏?
例如:
app.component.ts
export class AppComponent implements OnInit, AfterViewInit {
ngOnInit(): void {}
ngAfterViewInit() {
//Run a library that will populate the table, for example
//This will create an element with an id tableData
generateTableDataAfterDOMIsReady('#container');
}
}
app.component.html
<div id="container">
<!-- When the javascript function is invoked, it will dynamically change the content inside this div and generate a <div id="tableData"></div>
</div>
<div *ngIf="pseudoIsTableDataExists()">Data has been generated</div>
我没有其他变量可以监听以使其工作。唯一的线索是让第二个 div 在 #tableData 存在时显示出来。
慕村225694
holdtom
慕慕森
相关分类