首先,解决问题:jsfiddle.net
我正在使用一个弹出框,它的内容是 html,一个带有“click_me”类的按钮。我有 jquery 来监听“click_me”的点击,它应该会发出警报。然而,事实并非如此。我错过了什么吗?
JS:
jQuery(document).ready(function($) {
$('.demo_button').click(function () {
$(this).popover({
html: true,
trigger: 'manual',
placement: 'right',
content: function () {
var $buttons = $('#popover_template').html();
return $buttons;
}
}).popover('toggle');
});
$('.click_me').click(function() {
alert('it works!');
});
});
HTML:
<button class="btn btn-primary demo_button">Click here</button>
<div id="popover_template">
<button class="btn click_me">Make Alert</button>
</div>