Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将一个新的 DOM 元素附加到引导弹出窗口中。我必须使用 Highcharts 渲染一个小图表,它应该显示在弹出框中,所以我不能只使用字符串作为内容属性。
所以主要的问题是,如何在$el.popover()调用后获取弹出元素。
$el.popover()
您必须启用弹出框实例的 html 选项,例如,
$('.popover-with-html').popover({ html : true });
你可以这样做
$el.popover({ content: $('.chart') })
其中 .chart 是您的图表(或其他)元素。