2013-09-01 96 views
0

我想知道是否有一種方法來保持彈出窗口顯示當用戶懸停在它(我的意思是,不僅觸發元素,但彈出本身)?有沒有辦法在懸停時保持彈出窗口(懸停觸發器)?

在我的情況,我有我的popover content裏面的鏈接,但用戶不能點擊它,因爲popover離開hover觸發elelement(hover trigger)時,隱藏自身...

+0

的[** **解決我怎樣才能保持引導酥料餅的活着,而酥料餅被徘徊?](HT可能的複製TP://stackoverflow.com/questions/15989591/solved-how-can-i-keep-bootstrap-popover-alive-while-the-popover-is-being-hov)。你會在那裏找到你的答案 – Itay

回答

0

我沒有見過hover觸發 這裏還沒有任何解決辦法是我與manual,引發劑溶液從this question

$('.selector').popover({ 
     html: true, 
     trigger: 'manual', 
     container: $(this).attr('id'), 
     placement: 'top', 
     content: function() { 
      $return = '<div class="hover-hovercard"></div>'; 
     } 
    }).on("mouseenter", function() { 
     var _this = this; 
     $(this).popover("show"); 
     $(this).siblings(".popover").on("mouseleave", function() { 
      $(_this).popover('hide'); 
     }); 
    }).on("mouseleave", function() { 
     var _this = this; 
     setTimeout(function() { 
      if (!$(".popover:hover").length) { 
       $(_this).popover("hide") 
      } 
     }, 100); 
    }); 
相關問題