我不懂英语。很抱歉交换无意义的短语。
单击选择标签选项。引导弹出窗口关闭。
注意:问题 Mozilla firefox 浏览器。
// Bootstrap Popover
$('body').popover({
selector: '[data-popover]',
html: true,
trigger: 'click hover',
title: function() {
return $('.select_box').html();
},
content: '...',
placement: 'bottom',
delay: {
show: 50,
hide: 400
}
});
<button class='btn btn-primary' data-popover="true">hover here</button>
<div class="select_box hidden">
<select class="form-control">
<option>Day</option>
<option>Week</option>
<option>Month</option>
<option>...</option>
</select>
</div>