我試圖在引導popover內部選擇運行jquery,但啓動的選定下拉列表不可用於點擊。jquery在bootstrap popover中選擇不起作用
這裏是我的代碼:
HTML
<button type="button" class="btn btn-md btn-danger" id="popover" data-title="Popover title" >Click to toggle popover</button>
<div style="display: none;" id="popovercontent">
<select class="chosen chzn-done">
<option>Choose...</option>
<option>jQuery</option>
<option selected="selected">MooTools</option>
<option>Prototype</option>
<option>Dojo Toolkit</option>
</select>
</div>
JS
$(document).ready(function(){
// init chosen
var $chosen = $(".chosen").chosen();
// init popover
var $popover = $('#popover').popover({
placement: 'bottom',
html: true,
content: function() {
return $('#popovercontent').html();
},
title: function() {
return $(this).data('title');
},
});
// on show popover
$popover.on("show.bs.popover", function(e) {
console.log('open popover');
$chosen.trigger("chosen:updated");
});
}); // document.ready
https://jsfiddle.net/gdtocsud/
類似的問題(沒有回答):Chosen in bootstrap popover not working?
謝謝
比約恩·
這也將解決您的問題搜索下拉元素。 – rahulsm
非常感謝你,這解決了我的問題。 – Bjoern