当我尝试显示隐藏的表格时
<div id="buglist" style="display: none"
<?php include_once("partials/bugs.php");//here is the datatables table
</div
当我打电话
$("#buglist").show();
表格正确但很小,没有显示容器,没有显示:none,all is correct
答案 0 :(得分:0)
尝试使用removeAttr
$("#buglist").removeAttr("style")
答案 1 :(得分:0)
show()函数应该显示,我认为其他错误。你在domready上运行吗?
答案 2 :(得分:0)
尝试使用此而不是show():
$("#buglist").css("display", "block");