如果我运行它(JS在控制台中以方便):
<button id="myBtn" class="btn btn-default">Click</button>
$("#myBtn").popover('destroy').popover(
{
placement: 'left',
title: 'test',
html: true,
content: 'test',
trigger: 'focus'
}
);
popover有效。如果我第二次运行JS,则弹出窗口不起作用(可以在视觉事件中看到它没有绑定)。如果我第三次运行它,它的工作原理。等等...
这是引导程序中的错误,还是我错过了什么?有解决方法吗?