打开和关闭弹出窗口后如何获得警报

时间:2018-07-26 11:01:11

标签: angular angular5

我正在使用角度2:在关闭弹出窗口之后和打开弹出窗口之前如何获得警报。我做了部分检查,但是工作不正常。您能从脚本中找到我误报的地方吗? https://stackblitz.com/edit/angular-xtzmdm?file=src/app/dialog/dialog.component.ts

 export class popComponent implements OnInit, OnChanges {
 @Input() visible: boolean; 
 ngOnChanges() { 
 if(this.visible==true){ 
 alert("popup will open"); 
 }   
 if(this.visible==false){ 
 alert("popup closed"); 
 }  
 }

0 个答案:

没有答案