$('.profile-popover').hover(show_profile_popover.bind(this), hide_profile_popover.bind(this)); //鼠标经过触发
$('.profile-popover').on('hidden.bs.popover', function(){
alert('Run Here');
});
hidden.bs.popover事件在弹窗hide后,并没有执行alert啊?
$('.profile-popover').hover(show_profile_popover.bind(this), hide_profile_popover.bind(this)); //鼠标经过触发
$('.profile-popover').on('hidden.bs.popover', function(){
alert('Run Here');
});
hidden.bs.popover事件在弹窗hide后,并没有执行alert啊?