我需要根据各种条件点击按钮在我的项目中实施警报框。你能否建议我如何使用Angular 2实现警报框,我不需要传统的window.alert()
答案 0 :(得分:1)
您可以使用angular2包
npm install ng2-modal --save
`<button (click)="myModal.open()">Show popup</button>
<modal #myModal>
<modal-header>
<h1>Your header goes here</h1>
</modal-header>
<modal-content>
Body goes here
</modal-content>
<modal-footer>
<button class="btn btn-primary (click)="myModal.close()">Cancel</button>
</modal-footer>
</modal>`