我在引导弹出窗口中放置了带有一些输入的自定义 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);
});
});
我只想将弹出框中的复选框绑定到功能。我该怎么做?