gpt4 book ai didi

jquery - Bootstrap - 以编程方式附加并显示弹出框到元素

转载 作者:行者123 更新时间:2023-12-03 22:18:46 25 4
gpt4 key购买 nike

我正在使用 Bootstrap v3,并且尝试在页面加载时以编程方式在元素旁边显示一个弹出窗口。DOM 中没有弹出框标记。我想在 JQuery 中创建并显示它。

我已经尝试过这个,但它不起作用。

$( document ).ready(function() {
$('.theElement').popover({
placement:'right',
trigger:'manual',
html:true,
content:'popover content'
});
$('.theElement').popover('show')
});

我在控制台中收到“TypeError:Window.getCompulatedStyle 的参数 1 不是对象”错误。我假设这是由上述原因引起的。

最佳答案

试试这个

$( document ).ready(function() {
$('.theElement').attr('data-placement','right')
//add all atributes.....

//and finally show the popover
$('.theElement').popover('show')
});

关于jquery - Bootstrap - 以编程方式附加并显示弹出框到元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28363716/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com