如何更改jquery数据表列颜色

时间:2016-08-19 14:05:02

标签: javascript jquery html css datatables

我正在动态创建和填充jquery Datatable,而无需事先从ajax调用接收的值中声明列和行。现在我想更改我的Datatable列标题颜色。下面是我桌子的标记。

 <div class="row" style="padding-top: 2em;">
        <div class="col-sm-12">
            <div class="row" style="padding-top: 2em;">
                <div class="col-sm-12">
                    <table id="adt" class="table table-bordered table-hover compact table-striped" cellspacing="0" style="width: 100%">
                    </table>
                </div>
            </div>
 </div>

在这种情况下如何更新列颜色?请帮忙

1 个答案:

答案 0 :(得分:1)

你可以使用简单的css:

#adt > thead > tr > th {
    background-color: gray !important;
    color: white !important;
}