我使用的是Bootstrap 2.3.2。我从引导程序网站上抓取了一些代码以确保代码是正确的,但我仍然无法改变这个位置。
这是一个显示错误的小提琴:http://jsfiddle.net/4wJTR/
JavaScript可能不正确吗?
$(function () {
$('body').popover({
selector: '[data-toggle="popover"]'
});
});
答案 0 :(得分:2)
这是javascript。这修好了它:
$("a[data-toggle=popover]")
.popover({ //Initializes popover and pass options
animation: true,
trigger: 'manual'
})
.click(function(e) {
e.preventDefault();
$(this).popover('toggle');
e.stopPropagation();
});