最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How does Bootstrap know if an element has popover? - Stack Overflow

programmeradmin4浏览0评论

I understand when we add popover on an element in html but when we use javascript:

 $("#element").popover({ // popover details }); 

there is no change on #element in html code. How can I refer to all elements with popover when there is no sign of it in html code?

I understand when we add popover on an element in html but when we use javascript:

 $("#element").popover({ // popover details }); 

there is no change on #element in html code. How can I refer to all elements with popover when there is no sign of it in html code?

Share Improve this question edited Mar 5, 2015 at 10:50 Mina asked Mar 5, 2015 at 8:33 MinaMina 5272 gold badges6 silver badges12 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 12

The docs suggest that you add [data-toggle="popover"] to your elements with popovers and refer them through that attribute. However, if you don't do that and just manually initialize the popover, the plugin adds bs.popover data for you (through .data(), not .attr(), which is why you can't see them in the elements).

$("#popover").popover({
  title: "Wow" 
});

console.log($("#popover").data("bs.popover")); //see the console

http://www.bootply./vlpB0I0LcI

As for how to refer to them is bit more plex, as you have to either keep up a list of elements with the popovers like @Tim suggested or just parsing the whole node tree with bs.popover data. Adding the attribute would be much simpler though.

发布评论

评论列表(0)

  1. 暂无评论