这是我正在使用的警报示例:
<div class="alert alert-error" id="passwordsNoMatchRegister">
<span>
<p>Looks like the passwords you entered don't match!</p>
</span>
</div>
我知道这一点$(".alert").show()
,$(".alert").hide()
并将显示/隐藏类的所有元素.alert
。但是,鉴于其 ID,我无法弄清楚如何隐藏特定警报。
我想避免使用.alert("close")
,因为这会永久删除警报,并且我需要能够召回它。