手动调用关闭函数时似乎没有触发 onClose 事件的问题。
调用弹窗
$('#messageBoxPopup').bPopup({
easing: 'easeOutBack',
speed: 450,
onClose: function () {
alert('clear');
$('#messageBoxContent').html('');
}
});
关闭弹出窗口
$('#messageBoxPopup').bPopup().close();