有没有办法获取实际的popover元素,以便将事件监听器设置到popover上?
例如
jq("#theElement").popover.on('click', function(){console.log("hello world")});
答案 0 :(得分:0)
您可以使用jq(e.element).data('bs.popover').tip()
jq(e.element).data('bs.popover').tip().on("click",function(){
console.log("hello world");
});