我想使用数据属性在 twitter bootstrap中显示隐藏警报框,这是因为我可以在一页中使用多个警报框...
目前我有这个,
<a href="#" data-box="myAlert">Hint</a> //data-box is the id of the box
<div id="myAlert" class="alert alert-info">
<a class="close" data-dismiss="alert" href="#">×</a>
<p>Alert Me !!!!</p>
</div>