📜  动态元素上的引导弹出窗口 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:04.385000             🧑  作者: Mango

代码示例1
var popOverSettings = {
    placement: 'bottom',
    container: 'body',
    html: true,
    selector: '[rel="popover"]', //Sepcify the selector here
    content: function () {
        return $('#popover-content').html();
    }
}

$('body').popover(popOverSettings);