加载数据表时隐藏微调器

时间:2014-12-02 20:01:28

标签: jquery

我有一个微调器,我需要在加载数据表时隐藏它。

这是代码。

$('#datatable').dataTable({
            "paging" : true,
            "scrollX": true,
 "initComplete": function(settings, json) {
                $("#event-buble").css({"display" : "none", "height":"0px", "padding-top":"0px"});
                alert( 'DataTables has finished its initialisation.' );
             },
});

但是,虽然我运行了代码,但微调器并没有消失。表和微调器都显示出来。

如何解决此问题?

1 个答案:

答案 0 :(得分:2)

尝试为draw事件添加一个监听器:

$('#datatable')
    // init the datatable
    .dataTable({
        "paging" : true,
        "scrollX": true,
    })

    // listen for the draw event
    .on( 'draw.dt', function () {
        $("#bubble").hide();
    });