我有一个带有焦点触发器的弹出框和弹出框中的链接。
html:
<div class="tree">
<div class="html-popup">
Popup text <a href="http://www.google.com" target="_top">Link somewhere</a>
</div>
<a tabindex="0" role="button" data-container="body" data-toggle="popover" data-trigger="focus" data-placement="bottom">
Text that has a popover
</a>
</div>
JavaScript:
$('.tree [data-toggle="popover" ]').popover({
html: true,
content: function () {
return $(this).prev().html();
}
});
这是一个现场示例:JSFiddle
在 Chrome 中,该链接在弹出框关闭之前打开,但在 IE 和 Firefox 中,它只是关闭了弹出框。
我必须支持 IE9 和相当新的 Firefox 版本。如何在弹出窗口关闭之前打开链接?
谢谢!