如何使用角度2获取警报,确认框

时间:2017-03-16 06:42:53

标签: angular alert popupwindow angular2-modal

我需要根据各种条件点击按钮在我的项目中实施警报框。你能否建议我如何使用Angular 2实现警报框,我不需要传统的window.alert()

1 个答案:

答案 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>`

有关详情:https://www.npmjs.com/package/ng2-modal