jquery show()后数据表未正确显示

时间:2018-04-18 09:37:06

标签: javascript jquery datatables

当我尝试显示隐藏的表格时

<div id="buglist" style="display: none"
        <?php include_once("partials/bugs.php");//here is the datatables table 
</div

当我打电话

 $("#buglist").show();

表格正确但很小,没有显示容器,没有显示:none,all is correct

3 个答案:

答案 0 :(得分:0)

尝试使用removeAttr

$("#buglist").removeAttr("style")

答案 1 :(得分:0)

show()函数应该显示,我认为其他错误。你在domready上运行吗?

答案 2 :(得分:0)

尝试使用此而不是show():

$("#buglist").css("display", "block");