我需要使用php变量作为popover的内容。我试过这个,但它不起作用
<?php $comment = ORM::factory('mark')->getComment($user_id, $subject, $quarter1[$j][1], $quarter1[$j][0]); ?>
<a href="#" id="example" class="btn btn-success" rel="popover" data-content="<?php echo $comment;?>">hover for popover</a>
答案 0 :(得分:0)
添加数据切换=&#34; popover&#34;到你的锚。然后尝试这样的事情:
$("a[data-toggle=popover]")
.popover({
html: true,
animation: true,
placement: 'bottom',
trigger: 'manual'
})
在您的脚本文件中。
答案 1 :(得分:0)
我找到了解决方案!
<a class="d" rel = 'popover' data-html='true' data-content="<div><?php echo $comment?></div>" data-original-title='Popover Title' href="#">hover for popover</a>