我正在使用 Bootstrap v3,并且试图在页面加载时以编程方式在元素旁边显示一个弹出框。DOM 中没有弹出框标记。我想在 JQuery 中创建并显示它。
我已经尝试过了,但它不起作用。
$( document ).ready(function() {
$('.theElement').popover({
placement:'right',
trigger:'manual',
html:true,
content:'popover content'
});
$('.theElement').popover('show')
});
我在控制台中收到“TypeError:Window.getComputedStyle 的参数 1 不是对象”错误。我假设这是由上述原因引起的。