我使用代码如下
<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'});
});
但问题是在第一个悬停事件上没有显示弹出框
从第二个事件 popover 开始正常显示......这种活动的原因是什么以及如何纠正它......