私は次のようにコードを使用します
<a class="reply" data-content="this is the mail"
data-original-title="this is the title" rel="popover">this</a>
そして私は次のようにjqueryイベントをトリガーしました
$(document).on("mouseenter",".reply",function(event){
$(this).popover({placement:'bottom'});
});
しかし、問題は、ポップオーバーが表示されない最初のホバーイベントにあります
2番目のイベントからポップオーバーが正常に表示されます...この種のアクティビティの理由とそれを修正する方法は何ですか...