jquery – Bootstrap Popover,.click没有捕捉到popover内的按钮

前端之家收集整理的这篇文章主要介绍了jquery – Bootstrap Popover,.click没有捕捉到popover内的按钮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
首先,问题的小提琴: jsfiddle.net

我正在使用popover,它的内容是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>

解决方法

.click()只适用于您需要使用on的加载元素()
$(document).on("click",".click_me",function() {
    alert('it works!');
});
原文链接:https://www.f2er.com/jquery/182322.html

猜你在找的jQuery相关文章