bootstrap popover整个窗体监听

  //给body追加监听
     $('body').on('click', function (event) {
            var target = $(event.target);
            if (target.attr("id") !== "customer-reviews") {
                $('#customer-reviews').popover('hide');
            }
      });
 //前台代码
n customer reviews

因为bootstrap的popover组件没有点击非控件区使popover消失机制,需要人为添加,也可用modal代替,因为此控件具有内置这个功能。

你可能感兴趣的:(popover,bootstrap)