而不是将所有警报消息附加在一起仅显示最新警报消息并删除所有先前警报

时间:2014-04-23 18:41:22

标签: javascript jquery twitter-bootstrap alert

enter image description here

我想删除所有旧警报并仅显示最新警报。

添加这些提醒的代码段:

$("#update-timeline-audit").parent().after('<div class="alert alert-success inline"> <a href="#" class="close" data-dismiss="alert">&times;</a>No new tweets since the last audit</div>');

请建议我解决此警报重现问题的方法!提前谢谢!

1 个答案:

答案 0 :(得分:1)

尝试使用.html()代替.after()

每次.after()重置HTML时,

.html()都会附加HTML。