1

我在引导弹出窗口中放置了带有一些输入的自定义 html。现在我想使用 JavaScript 绑定这些输入,但我做不到......

所以,这是一个简单的例子,可以更清楚地解释我的问题:http: //jsfiddle.net/53pD6/16/

<button class="btn btn-small btn-popover" type="button" data-original-title="Popover" data-placement="bottom">*</button>

<!-- Popover html boby (Display attribute is none!) -->
<div id="popover_content_wrapper" style="display: none">
    <input type="checkbox" class="chbox"/>Click me (no effect)
</div>

<input type="checkbox" class="chbox"/>Click me (here it's Ok)

和 JS:

$(function(){
    $('.btn-popover').popover({ 
        html : true, 
        content: function() {
            return $('#popover_content_wrapper').html();
        }
    });

    $(".chbox").change(function(){
        alert(1);
    });
});

我只想将弹出框中的复选框绑定到功能。我该怎么做?

4

1 回答 1

2

由于.popover()不提供附加事件处理程序的方法,我知道解决此问题的唯一方法是:

 $('body').on('click', '.chbox', function () {
     alert(1);
 });

http://jsfiddle.net/53pD6/17/


更新 - 引导弹出框现在有事件

于 2013-07-16T14:19:34.487 回答