我使用了“警惕”功能,从Twitter的引导来显示用户通知,如下所示:
<div class="notification alert alert-info">
<button type="button" class="close" data-dismiss="alert">×</button>
My message goes here
</div>
这些通知是持久的,直到用户关闭它们,所以当用户点击“关闭”按钮,我想一个Ajax查询断火,以表明该通知应永久开除服务器。
我使用jQuery的on()
函数,如下所示:
$(document).on('click', '.notification .close', function (e) {
alert('hi!');
console.log(e);
e.preventDefault();
});
这工作得很好,但我不知道是否有有这样做的“Bootstrappy”的方式?