ホバーされている間、Bootstrapポップオーバーを存続させるにはどうすればよいですか?


114

ブートストラップポップオーバーを使用して、ユーザー情報を表示するホバーカードを作成し、ボタンのマウスオーバーでトリガーします。ポップオーバー自体がホバーされている間、このポップオーバーを存続させたいのですが、ユーザーがボタンへのホバーを停止するとすぐに消えます。これどうやってするの?

$('#example').popover({
    html : true,
    trigger : 'manual',
    content : function() {
        return '<div class="box">Popover</div>';
    }
});

$(document).on('mouseover', '#example', function(){
    $('#example').popover('show');
});

$(document).on('mouseleave', '#example', function(){
    $('#example').popover('hide');
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.js"></script>
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"/>

<a href="#" id="example" class="btn btn-danger" rel="popover" >hover for popover</a>


あなたは何を生き続けたいですか?ボタンの上にカーソルを合わせると開いたままですか?
David Chase

質問の最後の行を読む
vikas devde 2013

回答:


172

以下のコードスニペットでテストします。

私のユースケースに合わせて(vikasが提供するソリューションから)小さな変更。

  1. ポップオーバーボタンのホバーイベントでポップオーバーを開く
  2. ポップオーバーボックスにカーソルを合わせたときにポップオーバーを開いたままにする
  3. ポップオーバーボタンまたはポップオーバーボックスのいずれかで、mouseleaveでポップオーバーを閉じます。

$(".pop").popover({
    trigger: "manual",
    html: true,
    animation: false
  })
  .on("mouseenter", function() {
    var _this = this;
    $(this).popover("show");
    $(".popover").on("mouseleave", function() {
      $(_this).popover('hide');
    });
  }).on("mouseleave", function() {
    var _this = this;
    setTimeout(function() {
      if (!$(".popover:hover").length) {
        $(_this).popover("hide");
      }
    }, 300);
  });
<!DOCTYPE html>
<html>

<head>
  <link data-require="bootstrap-css@*" data-semver="3.2.0" rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
  <script data-require="jquery@*" data-semver="2.1.1" src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
  <script data-require="bootstrap@*" data-semver="3.2.0" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.js"></script>

  <link rel="stylesheet" href="style.css" />

</head>

<body>
  <h2 class='text-primary'>Another Great "KISS" Bootstrap Popover example!</h2>
  <p class='text-muted'>KISS = Keep It Simple S....</p>

  <p class='text-primary'>Goal:</p>
  <ul>
    <li>Open popover on hover event for the popover button</li>
    <li>Keep popover open when hovering over the popover box</li>
    <li>Close popover on mouseleave for either the popover button, or the popover box.</li>
  </ul>

  <button type="button" class="btn btn-danger pop" data-container="body" data-toggle="popover" data-placement="right" data-content="Optional parameter: Skip if this was not requested<br>                                    A placement group is a logical grouping of instances within a single Availability                                     Zone. Using placement groups enables applications to get the full-bisection bandwidth                                     and low-latency network performance required for tightly coupled, node-to-node                                     communication typical of HPC applications.<br>                                    This only applies to cluster compute instances: cc2.8xlarge, cg1.4xlarge, cr1.8xlarge, hi1.4xlarge and hs1.8xlarge.<br>                                    More info: <a href=&quot;http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html&quot; target=&quot;_blank&quot;>Click here...</a>"
    data-original-title="" title="">
    HOVER OVER ME
    </button>
  <br><br>
  <button type="button" class="btn btn-info pop" data-container="body" data-toggle="popover" data-placement="right" data-content="Optional parameter: Skip if this was not requested<br>                                    A placement group is a logical grouping of instances within a single Availability                                     Zone. Using placement groups enables applications to get the full-bisection bandwidth                                     and low-latency network performance required for tightly coupled, node-to-node                                     communication typical of HPC applications.<br>                                    This only applies to cluster compute instances: cc2.8xlarge, cg1.4xlarge, cr1.8xlarge, hi1.4xlarge and hs1.8xlarge.<br>                                    More info: <a href=&quot;http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html&quot; target=&quot;_blank&quot;>Click here...</a>"
    data-original-title="" title="">
    HOVER OVER ME... Again!
    </button><br><br>
  <button type="button" class="btn btn-success pop" data-container="body" data-toggle="popover" data-placement="right" data-content="Optional parameter: Skip if this was not requested<br>                                    A placement group is a logical grouping of instances within a single Availability                                     Zone. Using placement groups enables applications to get the full-bisection bandwidth                                     and low-latency network performance required for tightly coupled, node-to-node                                     communication typical of HPC applications.<br>                                    This only applies to cluster compute instances: cc2.8xlarge, cg1.4xlarge, cr1.8xlarge, hi1.4xlarge and hs1.8xlarge.<br>                                    More info: <a href=&quot;http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html&quot; target=&quot;_blank&quot;>Click here...</a>"
    data-original-title="" title="">
    Okay one more time... !
    </button>
  <br><br>
  <p class='text-info'>Hope that helps you... Drove me crazy for a while</p>
  <script src="script.js"></script>
</body>

</html>


これは完全に機能;します。2番目に欠落していることに気付きました$(_this).popover("hide")。でもありがとうございます、とてもシンプルできれいでした!
scapegoat17

3
この答えは素晴らしいです。2015年5月の時点でBS3で正常に動作します^^
縮退

1
テーブルで使用しcontainer: 'body'、セルをシフトさせるためにオプションに追加しました。正解です。
Alexander Derck

入力するとポップオーバーは非表示になり、300ミリ秒前にトリガー要素に戻ります。これを修正するには、setTimeoutで非表示にする前に、ポップオーバーとそのトリガーの両方が:hoverであるかどうかを確認します。また、setTimeoutと同じアプローチを使用して、ポップオーバー自体のマウスを離し、ちらつきを修正します。
rzb 2016年

animation:falseちらつきを修正するように設定してください-上記のPlunkerリンクを確認してください。それは私にとって完璧に機能します。
OkezieE

84

私はこれに対する別の解決策を探しました...これがコードです

    $('.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);
    });

6
追加することが重要です。animation: falseリンクにマウスを繰り返し移動すると、リンクが正しく機能しなくなります
jasop

5
コード@vikasに小さな変更を加えました(gist.github.com/Nitrodist/7913848)。50ms後に状態を再チェックして、スタックが開いたままにならないようにします。つまり、50msごとに継続的に再チェックされます。
Nitrodist 2013

2
これをどのようにこれに適合させることができるので、ドキュメントに追加されたばかりのライブ要素で機能しますか?
williamsowen 14年

28

これが私の見解です:http : //jsfiddle.net/WojtekKruszewski/Zf3m7/22/

マウスをポップオーバートリガーから実際のポップオーバーコンテンツに斜めに移動しているときに、下の要素にカーソルを合わせると、私はそのような状況を処理したかった–タイムアウトが発生する前にポップオーバーコンテンツに到達する限り、あなたは安全です(ポップオーバーは消えません)。delayオプションが必要です。

このハックは基本的にポップオーバーleave関数をオーバーライドしますが、オリジナルを呼び出します(タイマーが開始してポップオーバーを非表示にします)。次に、mouseenterポップオーバーコンテンツ要素に1回限りのリスナーをアタッチします。

マウスがポップオーバーに入ると、タイマーはクリアされます。次にmouseleave、ポップオーバーでリッスンし、トリガーされた場合は、元のLeave関数を呼び出して、非表示タイマーを開始できるようにします。

var originalLeave = $.fn.popover.Constructor.prototype.leave;
$.fn.popover.Constructor.prototype.leave = function(obj){
  var self = obj instanceof this.constructor ?
    obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
  var container, timeout;

  originalLeave.call(this, obj);

  if(obj.currentTarget) {
    container = $(obj.currentTarget).siblings('.popover')
    timeout = self.timeout;
    container.one('mouseenter', function(){
      //We entered the actual popover – call off the dogs
      clearTimeout(timeout);
      //Let's monitor popover content instead
      container.one('mouseleave', function(){
        $.fn.popover.Constructor.prototype.leave.call(self, self);
      });
    })
  }
};

5
container = self.$tip;この方法を使用すると、コンテナーの検索を改善できますcontainer。このプロパティを設定すると、ポップオーバーを見つけることもできます。ここにフィドルがあります:jsfiddle.net/dennis_c/xJc65
dbroeks

3
@pferrel私は@Wojtek_Kruszewskiのフィドルの私のフォークでこの問題を解決しました:jsfiddle.net/HugeHugh/pN26dif (!thisTip.is(':visible'))呼び出す前に確認する部分を参照してくださいoriginalShow()
H犬14

1
ポップオーバーがオプションで初期化されている場合、container: 'body',このソリューションは期待どおりに機能しません。変数containerをに置き換える必要がありますself.$tip。詳細については私の答えを確認してください:stackoverflow.com/a/28731847/439427
Rubens Mariuzzo

1
鮮やかさ。これは、他の回答とは異なり、「selector」パラメーターを使用する場合に機能します。
jetlej 2015年

1
ここで出て先端がまだそれを隠して再入力する際のバグを修正し改良版であり、また、先端が本体に装着されたときのシナリオを修正jsfiddle.net/Zf3m7/1499
ゾルタンTamási

14

簡単な方法はこれだと思います:

$('.popover').each(function () {
                    var $this = $(this);
                    $this.popover({
                        trigger: 'hover',
                        content: 'Content Here',
                        container: $this
                    })
                });

このようにして、ポップオーバーはターゲット要素自体の内部に作成されます。したがって、マウスをポップオーバーの上に移動すると、それはまだ要素の上にあります。Bootstrap 3.3.2はこれでうまく動作します。古いバージョンではアニメーションに問題がある可能性があるため、「animation:false」を無効にすることができます。


私はこのスレッドが古いことを知っていますが、これは私の意見では最良で最もクリーンなソリューションであり、上位にランク付けする必要があります。唯一の注意点は、トリガー要素から「奇妙な方法で」ポップオーバーを「離して」配置すると、これが壊れることです。しかし、2つの間の距離がゼロである限り(たとえば、それらが重なっている場合)、これは美しく機能し、カスタムJSを必要としません。ありがとうございました!
JohnGalt

これは、これまでのところ、最もクリーンで簡単なソリューションです。上位にランクされるべきです!非表示にdelay: { "hide": 400 }する前に遅延を追加することを追加しました。👍
coorasse

14

トリガーセットを使用しhover、コンテナーセットをに設定し、#element最後にtoの配置を追加しboxましたright

これはあなたの設定でなければなりません:

$('#example').popover({
    html: true,
    trigger: 'hover',
    container: '#example',
    placement: 'right',
    content: function () {
        return '<div class="box"></div>';
    }
});

そして#exampleCSSはposition:relative;以下のjsfiddleを確認する必要があります:

https://jsfiddle.net/9qn6pw4p/1/

編集済み

このフィドルには問題なく動作する両方のリンクがあります http://jsfiddle.net/davidchase03/FQE57/4/


うーん、動作しcontentます。オプションでjquery ajaxを使用して、サーバー側からコンテンツを取得できます。動作するか、それとも追加の作業を行う必要があります
vikas devde

@vikasdevdeはいajax、コンテンツで使用できますが、機能するように設定する必要があります... OP他の人が利益を得ることができるように、回答が正しい場合は回答をマークしてください
David Chase

しかし、我々はコンテナとしてリンク自体を使用するならば、全体のポップオーバーがリンクになります....それを試してみてください
ヴィカスdevde

ボックスの中にリンクを入れても、リンクは外れます。正しいですか?
David Chase

2
私にとってjsfiddleの作業はありません。クロム2014
pferrel

7

これは、ネット上の他のビットの助けを借りて、私がブートストラップポップオーバーで行った方法です。サイトに表示されているさまざまな製品からタイトルとコンテンツを動的に取得します。各製品またはポップオーバーは一意のIDを取得します。ポップオーバーは、製品($ this .pop)またはポップオーバーを終了すると消えます。タイムアウトは、ポップオーバーの代わりに製品を終了するまでポップオーバーを表示する場所で使用されます。

$(".pop").each(function () {
        var $pElem = $(this);
        $pElem.popover(
            {
                html: true,
                trigger: "manual",
                title: getPopoverTitle($pElem.attr("id")),
                content: getPopoverContent($pElem.attr("id")),
                container: 'body',
                animation:false
            }
        );
    }).on("mouseenter", function () {
        var _this = this;
        $(this).popover("show");
        console.log("mouse entered");
        $(".popover").on("mouseleave", function () {
            $(_this).popover('hide');
        });
    }).on("mouseleave", function () {
        var _this = this;
        setTimeout(function () {
            if (!$(".popover:hover").length) {
                $(_this).popover("hide");
            }
        }, 100);
    });
    function getPopoverTitle(target) {
        return $("#" + target + "_content > h3.popover-title").html();
    };

    function getPopoverContent(target) {
        return $("#" + target + "_content > div.popover-content").html();
    };

これは、ポップオーバーがターゲット要素の子でない場合にも機能します。+1
タハパクス

6

これは、すべてのポップオーバーをオンにするために通常のブートストラップ実装を使用できるようにしながら、うまく機能しているように見える私が考案したソリューションです。

元のフィドル: https //jsfiddle.net/eXpressive/hfear592/

この質問に移植:

<a href="#" id="example" class="btn btn-danger" rel="popover" >hover for popover</a>

$('#example').popover({
    html : true,
    trigger : 'hover',
    content : function() {
        return '<div class="box"></div>';
    }
}).on('hide.bs.popover', function () {
    if ($(".popover:hover").length) {
      return false;
    }                
}); 

$('body').on('mouseleave', '.popover', function(){
    $('.popover').popover('hide');
});

2

最善の方法は、David Chase、Cu Lyなどの方法を使用することです。これを行う最も簡単な方法はcontainer: $(this)、次のようにプロパティを使用することです。

$(selectorString).each(
  var $this = $(this);
  $this.popover({
    html: true,
    placement: "top",
    container: $this,
    trigger: "hover",
    title: "Popover",
    content: "Hey, you hovered on element"
  });
);

ここで、この場合のポップオーバーは現在の要素のすべてのプロパティを継承することを指摘しておきます。したがって、たとえば、.btn要素(ブートストラップ)に対してこれを行うと、ポップオーバー内のテキストを選択できなくなります。私はこれにかなりの時間を費やしたので、それを記録したかっただけです。


1

Vikasの回答は私にとって完璧に機能します。ここで遅延のサポートも追加します(表示/非表示)。

var popover = $('#example');
var options = {
    animation : true,
    html: true,
    trigger: 'manual',
    placement: 'right',
    delay: {show: 500, hide: 100}
};   
popover
    .popover(options)
    .on("mouseenter", function () {

        var t = this;
        var popover = $(this);    
        setTimeout(function () {

            if (popover.is(":hover")) {

                popover.popover("show");
                popover.siblings(".popover").on("mouseleave", function () {
                    $(t).popover('hide');
                });
            }
        }, options.delay.show);
    })
    .on("mouseleave", function () {
        var t = this;
        var popover = $(this);

        setTimeout(function () {
            if (popover.siblings(".popover").length && !popover.siblings(".popover").is(":hover")) {
                $(t).popover("hide")
            }
        }, options.delay.hide);
    });     

また、私が変更したことに注意してください:

if (!$(".popover:hover").length) {

と:

if (popover.siblings(".popover").length && !popover.siblings(".popover").is(":hover")) {

そのため、開かれたポップオーバーで正確に参照し、他のポップオーバーでは参照しません(現在、遅延により、同時に複数を開くことができたため)。


私が最後に行ったコメントは、container:bodyを使用する場合、実際には正しくありません。それでも、その1行に対してVikasのソリューションを使用する必要があります
user1993198

1

選択した回答は機能しますが、ポップオーバーがbodyコンテナとしてで初期化されると失敗します。

$('a').popover({ container: 'body' });

選択した回答に基づく解決策は、ポップオーバーを使用する前に配置する必要がある次のコードです。

var originalLeave = $.fn.popover.Constructor.prototype.leave;
$.fn.popover.Constructor.prototype.leave = function(obj) {
    var self = obj instanceof this.constructor ? obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type);
    originalLeave.call(this, obj);

    if (obj.currentTarget) {
        self.$tip.one('mouseenter', function() {
            clearTimeout(self.timeout);
            self.$tip.one('mouseleave', function() {
                $.fn.popover.Constructor.prototype.leave.call(self, self);
            });
        })
    }
};

この変更はself.$tip、ポップオーバーが常に要素の兄弟であると想定してDOMをトラバースする代わりに使用することで最小限に抑えられます。


0

ツールチップについても同じです:

私にとって、次の解決策はすべての 'mouseenter'にイベントリスナーを追加せず、ツールチップを維持するツールチップ要素にホバーすることができるため機能します。

$ ->

  $('.element').tooltip({
    html: true,
    trigger: 'manual'
  }).
  on 'mouseenter', ->
    clearTimeout window.tooltipTimeout
    $(this).tooltip('show') unless $('.tooltip:visible').length > 0
  .
  on 'mouseleave', ->
    _this = this
    window.tooltipTimeout = setTimeout ->
      $(_this).tooltip('hide')
    , 100

$(document).on 'mouseenter', '.tooltip', ->
  clearTimeout window.tooltipTimeout

$(document).on 'mouseleave', '.tooltip', ->
  trigger = $($(this).siblings('.element')[0])
  window.tooltipTimeout = setTimeout ->
    trigger.tooltip('hide')
  , 100

0

この解決策は私にとってうまくいきました:(今はその防弾です);-)

function enableThumbPopover() {
    var counter;

    $('.thumbcontainer').popover({
        trigger: 'manual',
        animation: false,
        html: true,
        title: function () {
            return $(this).parent().find('.thumbPopover > .title').html();
        },
        content: function () {
            return $(this).parent().find('.thumbPopover > .body').html();
        },
        container: 'body',
        placement: 'auto'
    }).on("mouseenter",function () {
        var _this = this; // thumbcontainer

        console.log('thumbcontainer mouseenter')
        // clear the counter
        clearTimeout(counter);
        // Close all other Popovers
        $('.thumbcontainer').not(_this).popover('hide');

        // start new timeout to show popover
        counter = setTimeout(function(){
            if($(_this).is(':hover'))
            {
                $(_this).popover("show");
            }
            $(".popover").on("mouseleave", function () {
                $('.thumbcontainer').popover('hide');
            });
        }, 400);

    }).on("mouseleave", function () {
        var _this = this;

        setTimeout(function () {
            if (!$(".popover:hover").length) {
                if(!$(this).is(':hover'))
                {
                    $(_this).popover('hide');
                }
            }
        }, 200);
    });
}

0
        $(function() {
            $("[data-toggle = 'popover']").popover({
                placement: 'left',
                html: true,
                trigger: "  focus",
            }).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);
            });
        }); 

0

mouseleaveウィンドウのフォーカスが突然変わり、ユーザーがブラウザに戻ってくるなど、奇妙なことが起こってもは起動しないことに気付きました。そのような場合、mouseleave、カーソルが上に移動して要素から離れるまで、は起動しません。

私が思いついたこの解決策mouseenterwindowオブジェクトに依存しているので、マウスをページ上の他の場所に移動すると消えます。

これは、(テーブルのように)それをトリガーするページに複数の要素がある場合に機能するように設計されています。

var allMenus = $(".menus");
allMenus.popover({
    html: true,
    trigger: "manual",
    placement: "bottom",
    content: $("#menuContent")[0].outerHTML
}).on("mouseenter", (e) => {
    allMenus.not(e.target).popover("hide");
    $(e.target).popover("show");
    e.stopPropagation();
}).on("shown.bs.popover", () => {
    $(window).on("mouseenter.hidepopover", (e) => {
        if ($(e.target).parents(".popover").length === 0) {
            allMenus.popover("hide");
            $(window).off("mouseenter.hidepopover");
        }
    });
});

0

それは、よりになります柔軟hover()

$(".my-popover").hover(
    function() {  // mouse in event
        $this = $(this);
        $this.popover({
            html: true,
            content: "Your content",
            trigger: "manual",
            animation: false
            });
        $this.popover("show");
        $(".popover").on("mouseleave", function() {
            $this.popover("hide");
        });
    },
    function() {  // mouse out event
        setTimeout(function() {
            if (!$(".popover:hover").length) {
                $this.popover("hide");
            }
        }, 100);
    } 
)

0

シンプル:)

$('[data-toggle="popover"]').popover( { "container":"body", "trigger":"focus", "html":true });
$('[data-toggle="popover"]').mouseenter(function(){
    $(this).trigger('focus');
});

0

私は最近、これをKOで動作させる必要があり、上記のソリューションは表示と非表示に遅延があるとうまく機能しませんでした。以下でこれを修正する必要があります。ブートストラップツールチップの動作に基づいています。これが誰かを助けることを願っています。

var options = {
                delay: { show: 1000, hide: 50 },
                trigger: 'manual',                      
                html: true
            };
var $popover = $(element).popover(options);

$popover.on('mouseenter', function () { // This is entering the triggering element
    var self = this;

    clearTimeout(self.timeout);
    self.hoverState = 'in';

    self.timeout = setTimeout(function () {
        if (self.hoverState == 'in') {
            $(self).popover("show");

            $(".popover, .popover *").on('mouseover', function () { // This is moving over the popover
                clearTimeout(self.timeout);
            });                                                                 

            $(".popover").on('mouseleave', function () { // This is leaving the popover
                self.timeout = setTimeout(function () {
                    if (self.hoverState == 'out') {
                        $(self).popover('hide');
                    }
                }, options.delay.hide);
            });
        }
    }, options.delay.show);
}).on('mouseleave', function (event) { // This is leaving the triggering element
    var self = this;

    clearTimeout(self.timeout);
    self.hoverState = 'out';

    self.timeout = setTimeout(function () {                             
        if (self.hoverState == 'out') {
            $(self).popover('hide');
        }

    }, options.delay.hide);
});

-1

これは、遅延があり、ajaxによってロードされたshow dynamicsツールチップの私のコードです。

$(window).on('load', function () {
    generatePopovers();
    
    $.fn.dataTable.tables({ visible: true, api: true }).on('draw.dt', function () {
        generatePopovers();
    });
});

$(document).ajaxStop(function () {
    generatePopovers();
});

function generatePopovers() {
var popover = $('a[href*="../Something.aspx"]'); //locate the elements to popover

popover.each(function (index) {
    var poplink = $(this);
    if (poplink.attr("data-toggle") == null) {
        console.log("RENDER POPOVER: " + poplink.attr('href'));
        poplink.attr("data-toggle", "popover");
        poplink.attr("data-html", "true");
        poplink.attr("data-placement", "top");
        poplink.attr("data-content", "Loading...");
        poplink.popover({
            animation: false,
            html: true,
            trigger: 'manual',
            container: 'body',
            placement: 'top'
        }).on("mouseenter", function () {
            var thispoplink = poplink;
            setTimeout(function () {
                if (thispoplink.is(":hover")) {
                    thispoplink.popover("show");
                    loadDynamicData(thispoplink); //load data by ajax if you want
                    $('body .popover').on("mouseleave", function () {
                        thispoplink.popover('hide');
                    });
                }
            }, 1000);
        }).on("mouseleave", function () {
            var thispoplink = poplink;
            setTimeout(function () {
                if (!$("body").find(".popover:hover").length) {
                    thispoplink.popover("hide");
                }
            }, 100);
        });
    }
});

function loadDynamicData(popover) {
    var params = new Object();
    params.somedata = popover.attr("href").split("somedata=")[1]; //obtain a parameter to send
    params = JSON.stringify(params);
    //check if the content is not seted
    if (popover.attr("data-content") == "Loading...") {
        $.ajax({
            type: "POST",
            url: "../Default.aspx/ObtainData",
            data: params,
            contentType: "application/json; charset=utf-8",
            dataType: 'json',
            success: function (data) {
                console.log(JSON.parse(data.d));
                var dato = JSON.parse(data.d);
                if (dato != null) {
                    popover.attr("data-content",dato.something); // here you can set the data returned
                    if (popover.is(":hover")) {
                        popover.popover("show"); //use this for reload the view
                    }
                }
            },

            failure: function (data) {
                itShowError("- Error AJAX.<br>");
            }
        });
    }
}

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.