我在我的 HTML 文档中动态加载了内容。所以我不能对那些稍后添加的元素使用jQuery的点击功能。我刚刚将弹出框触发器设置为手动结合jQuerys on function,但它仍然不起作用。请看一下我的代码。
$(".dynamic-element").popover({
placement : 'left',
title : 'Title',
content : 'Content',
trigger : 'manual'
}).on("click", ".dynamic-element", function(event) {
event.preventDefault();
$(this).popover('toggle');
});