引导酥料饼Dismissable不工作(Bootstrap Popover Dismissable

2019-10-21 04:59发布

<a href="#" class="btn btn-warning" id="no_mls_entry" tabindex="2" data-toggle="popover" data-trigger="focus" data-placement="left auto" title="Early Bird Gets The Worm" data-content="Sometimes it takes some time for the MLS&reg; RETS pool to update your new listing. Loading it manually early, then sharing on social media will give you better exposure on Google.">Enter Without MLS #</a>

以上是我酥料饼的HTML语法,根据他们的指示,使其解雇点击设置为数据触发=“焦点”。

然后在文件准备好了,我运行以下命令:

$('#no_mls_entry').popover('show');

该酥料饼好吗显示出来,但点击它,它不会消失。

Answer 1:

这似乎是为重点的方式问题被管理。

你可以尝试以下迫使焦点:

$('#no_mls_entry').popover('show').focus();

这里是在bootply代码的示例:

http://www.bootply.com/J1iTFk9M1Y

或者,如果你愿意不显示在页面载入酥料饼,你可以用下面的代码加载酥料饼,它会在按下按钮来触发:

$('#no_mls_entry').popover();


文章来源: Bootstrap Popover Dismissable is not working