dongsui3297 2013-01-04 05:54
浏览 36
已采纳

Twitter Bootstrap popovers无法在Wordpress循环中运行

I have been trying to get bootstrap popovers to work within a Wordpress loop with no success, this is what I have so far :

<?php while($have_posts()): $the_post();
  $excerpt = strip_tags(get_the_excerpt());?>

  <a class="<?php echo the_ID()?>" href="<?php echo the_permalink();?>"><?php echo the_title();?></a>

  <script>
  jQuery('.<?php echo the_ID()?>').mouseenter(function(){
    jQuery(this).popover({
      html: true,
      title: '<?php echo the_title();?>',
      trigger: 'manual',
      placement:'top',
      content:'<?php echo $excerpt;?>'
    }).popover('show');
  });
  </script>
<?php endwhile;?>

This prints what I expect

<a class="5598" href="http://mysite.oom/post/">Post Title</a>

<script>
jQuery('.5598').mouseenter(function(){
  jQuery('.5598').popover({
    html: true,
    title: 'Post Title',
    trigger: 'manual',
    placement:'top',
    content:'Post Excerpt'
  }).popover('show');
});
</script>

etc...

However the popovers aren't displaying on hover and I'm not getting any script errors, so I'm at a loss for why the popovers aren't working, I do have jQuery, bootstrap.js, and bootstrap.css included on page load. Any help would be greatly appreciated!

Thanks

  • 写回答

1条回答 默认 最新

  • doujing3896 2013-01-04 06:11
    关注

    Classes and IDs do not work when it starts with numbers!

    It is well known stuff that when you give class as a number:

    <div class="1234">...</div>
    

    It doesn't work. In your case, it is like this:

    <script>
    jQuery('.5598').mouseenter(function(){
      jQuery('.5598').popover({
        html: true,
        title: 'Post Title',
        trigger: 'manual',
        placement:'top',
        content:'Post Excerpt'
      }).popover('show');
    });
    </script>
    

    The class is a pure number. 5598. Doesn't work. So try replacing it with something like:

    <a class="p5598" href="http://mysite.oom/post/">Post Title</a>
    
    <script>
    jQuery('.p5598').mouseenter(function(){
      jQuery('.p5598').popover({
        html: true,
        title: 'Post Title',
        trigger: 'manual',
        placement:'top',
        content:'Post Excerpt'
      }).popover('show');
    });
    </script>
    

    And one more thing I doubt is, the .popover() is a function, that is to be used like instantiation. So, don't give it under .mouseenter(). Replace the whole script this way:

    <script>
    jQuery(document).ready(function(){
      jQuery('.p5598').popover({
        html: true,
        title: 'Post Title',
        trigger: 'manual',
        placement:'top',
        content:'Post Excerpt'
      })
      jQuery('.p5598').hover(function() {
        jQuery('.p5598').popover('show');
      }, function(){
        jQuery('.p5598').popover('hide');
      });
    });
    </script>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 求解vmware的网络模式问题
  • ¥24 EFS加密后,在同一台电脑解密出错,证书界面找不到对应指纹的证书,未备份证书,求在原电脑解密的方法,可行即采纳
  • ¥15 springboot 3.0 实现Security 6.x版本集成
  • ¥15 PHP-8.1 镜像无法用dockerfile里的CMD命令启动 只能进入容器启动,如何解决?(操作系统-ubuntu)
  • ¥30 请帮我解决一下下面六个代码
  • ¥15 关于资源监视工具的e-care有知道的嘛
  • ¥35 MIMO天线稀疏阵列排布问题
  • ¥60 用visual studio编写程序,利用间接平差求解水准网
  • ¥15 Llama如何调用shell或者Python
  • ¥20 谁能帮我挨个解读这个php语言编的代码什么意思?