admin管理员组文章数量:1348098
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?
1 Answer
Reset to default 12The 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.
本文标签: javascriptHow does Bootstrap know if an element has popoverStack Overflow
版权声明:本文标题:javascript - How does Bootstrap know if an element has popover? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743845214a2548993.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论