我正在用ajax填充表主体
success:function(response)
{
$("#students").append(response); // #students is tbody id (<tbody id="students">)
$('.table-responsive').responsiveTable('update');
//$('#the_id_to_the_table_responsive_wrapper').responsiveTable('update');
console.log(response)
}
这都不起作用:
$('.table-responsive').responsiveTable('update');
也不起作用
$('#the_id_to_the_table_responsive_wrapper').responsiveTable('update');
请提出可能的问题。