Bootstrap popover hover第一次的时候弹窗不出现,从第二次起才开始出现 (ajax填充内容)

发布于 2022-09-02 13:50:25 字数 1116 浏览 19 评论 0

<a href="#"  data-studentId="01" data-toggle="popover">Student1</a>
<a href="#"  data-studentId="02" data-toggle="popover">Student2</a>
<a href="#"  data-studentId="03" data-toggle="popover">Student3</a>
$(function () {
    $("a").hover(function(){
        var e = $(this);
        var studentId = e.attr('data-studentId');
        $.ajax({
           url: 'http://www.***',
           type: 'get',
           data:{"studentId":studentId},
           dataType: 'jsonp',
           success: function(msg){//msg:  {name: "Lisa",gender: "female"}
              var content = '<div>' + msg.name + '</div>' + '<div>' + msg.gender + '</div>';
              e.popover({
                  html: true,
                  trigger: 'hover',
                  placement: 'bottom',
                  container: 'body',
                  content: content,
                  delay: { "show": 500, "hide": 200 }
              })
           }
       })
    })
})

应该是a的hover事件与popover事件有点冲突了,但是不清楚怎么修改一下,请熟悉的高手指点一下,谢谢!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱的故事 2022-09-09 13:50:25

e.popover()后面添加 .popover('show');
e.popover()只是做了配置,鼠标已经在上面了,所以不会触发hover事件。
另外,你这样每次都需要ajax请求一次,其实可以在$.ajax语句之前添加e.off('hover'); 移除当前a元素的hover事件。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文