gpt4 book ai didi

angularjs - Angular UI Bootstrap Alert 可关闭问题

转载 作者:行者123 更新时间:2023-12-03 08:15:43 30 4
gpt4 key购买 nike

我正在使用 Angular UI Bootstrap使用以下代码生成警报框:

<alert data-ng-repeat="alert in alerts" type="{{alert.type}}" close="closeAlert($index)">{{alert.msg}}</alert>

它按预期呈现:

Alert Boxes

我的问题是: 根据变量,是否有某种方法可以使某些通知可关闭,而另一些则不能关闭?

我已经编写了这个模拟代码并希望显示可关闭的 x仅当 closeabletrue .
$scope.alerts = [
{ type: 'danger', closeable: false, msg: 'Oh snap! Change a few things up and try submitting again.' },
{ type: 'success', closeable: true, msg: 'Well done! You successfully read this important alert message.' },
{ type: 'warning', closeable: false, msg: 'Be careful! Something may go wrong here.' },
{ type: 'info', closeable: true, msg: 'Attention! Here is some news for you.' }
];

最佳答案

为你的十字架试一试

<button type="button" class="close" data-dismiss="alert" ng-if="alert.closable">
<span aria-hidden="true">&times; </span><span class="sr-only">Close</span></button>

关于angularjs - Angular UI Bootstrap Alert 可关闭问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24820629/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com