DataTable.NET的event執行順序

var dataTable = $('#table')
.on( 'processing.dt', function ( e, settings, processing ) {
    $('#loading_overlay').css( 'display', processing ? 'block' : 'none' );
    if (!processing && dataTable  != null) {
        console.log("processing finished.")
    }
})
.on('xhr.dt', function ( e, settings, json, xhr ) {
    console("xhr event: ajax responsed");
    if (json["success"] == true) {

    }
})
.on( 'page.dt', function () {
    console("paging processed.");
})
.on( 'draw.dt', function () {
    console("draw processed.");
})
.on( 'init.dt', function () {
    console("init processed.");
})
.on( 'click', 'tbody td', function () {
})
.DataTable({ 
     // settings....
});

當頁面第一次load

processing.dt (processing == false) => xhr.dt => page.dt => draw.dt => init.dt => processing.dt (processing == true)

當換到另外一頁

processing.dt (processing == false) => xhr.dt => page.dt => draw.dt => processing.dt (processing == true)

posted @ 2019-07-30 05:48  日光之下无新事  阅读(195)  评论(0编辑  收藏  举报