Show one popover and hide other popovers

前端 未结 13 1824
死守一世寂寞
死守一世寂寞 2020-12-24 04:45

i have several buttons and i need a popover for each.
i want it like this:
when my user click on one of them, i want others to be hidden. so only one popover is show

13条回答
  •  一整个雨季
    2020-12-24 05:05

    This is the simplest and elegant way to do this:

        $('[data-toggle="popover"]').on('click', function(){
            $('[data-toggle="popover"]').not(this).popover('hide');
        });
    

提交回复
热议问题