Bootstrap 中 hidden.bs.popover 事件不触发问题

    $('.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啊?