11

我正在使用 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 不是对象”错误。我假设这是由上述原因引起的。

4

2 回答 2

5

尝试这个

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

   //and finally show the popover
   $('.theElement').popover('show')
});
于 2016-04-27T01:56:27.887 回答
1
    $("[wf-popover]").popover({
        html : true,
        content: function() {
          var content = $(this).attr("wf-content");
          return content;
        },
        title: function() {
          var title = $(this).attr("wf-title");
          //return $(title).children(".popover-heading").html();
          return title;
        },
        placement: function() {
            var my = this.$element.attr('wf-popover')
            return my;
        },
        trigger: 'hover'
    });

元素

<img src="profile.jpg" wf-popover="left" wf-content="<img src='profile_big.jpg' width=500 height=500 />" data-original-title="" title="">
于 2018-02-28T06:02:00.447 回答