我正在使用 Twitter Bootstrap 中的“警报”功能来显示用户通知,如下所示:
<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();
});
这很好用,但我想知道是否有“引导”的方式来做到这一点?