Bootstrap动态表不起作用

时间:2017-05-09 10:22:20

标签: javascript html

我想在我的代码中使用Bootstrap动态表。这是HTML的代码:

<button type="button" id="show">Change Content</button>
<div class="table-responsive">
   <table id="tabl" class="table table-condensed"></table>            
</div>

JS代码:

$(document).ready(function() {

$('.deliverable-infos').hide();
$('.dropdown-deliverable').on('click', function(e) {
    console.log("dropdown toggled!");
    e.preventDefault();
    e.stopPropagation();
    //get targeted element via data-for attribute
    var dataFor = $(this).data('for');
    var idFor = $(dataFor);
    idFor.slideToggle();
}); 

});
 $('#show').click(function(){
  var table="<thead><tr><th>Deliverable</th><th>Description</th><th>Ending on</th></tr></thead>";
                table+="<tr class='clickable warning dropdown-deliverable' data-for='#details_1'><td>uranium</td><td>magic potion</td><td>April 23, 2014</td></tr><tr style='padding:0'><td style='padding:0px'></td><td colspan=2 style='padding:0px;'><div class='deliverable-infos' id='details_1'><table class='table table-condensed table-user-content' id='hidden_table_1'><tr><td>نام کالا :</td><td class='right-col'>April 22, 2013</td></tr><tr><td>قیمت :</td><td class='right-col'>500 h</td></tr><tr><td>تخفیف :</td><td class='right-col'>3000 €</td></tr></table></div></td><td style='padding:0'></td><td style='padding:0'></td></tr><tr class='clickable warning dropdown-deliverable' data-for='#details_2'><td>detonator</td><td>magic wand</td><td>April 23, 2014</td></tr><tr style='padding:0'><td style='padding:0'></td><td colspan=2 style='padding:0'><div class='deliverable-infos' id='details_2'><table class='table table-condensed table-user-content' id='hidden_table_2'><tbody><tr><td>Started:</td><td class='right-col'>April 22, 2013</td></tr><tr><td>Load:</td><td class='right-col'>20 h</td></tr><tr><td>Fare:</td><td class='right-col'>200 €</td></tr></tbody></table></div></td><td style='padding:100px'></td><td style='padding:100px'></td></tr>";
                document.getElementById("tabl").innerHTML = table;
 });

但是当我运行它时,它会向我显示所有表格和动态方面根本不起作用。

1 个答案:

答案 0 :(得分:0)

在网页上使用动态内容时,需要使用以下方法添加事件侦听器:

$(document).on('click', '.dropdown-deliverable', function(e) {
});

取代:

$('.dropdown-deliverable').on('click', function(e) {

});

然后它会起作用。

在此处详细了解动态事件监听器:http://api.jquery.com/on/#direct-and-delegated-events

<强>更新 使用时:

$(document).on('click', '.dropdown-deliverable', function(e) {
});

$(document)可以被页面中的任何静态元素替换(即)不是动态生成的。

例如,您可以使用表id =“tabl”,因为它不是页面上的dymanic,因此您的代码变为:

$('#tabl').on('click', '.dropdown-deliverable', function(e) {
});