我想获取服务器端处理的 Foo Table 页码

I want to get the Page Number of Foo Table for Server Side Processing

这是我的 foo table 单击分页按钮时我可以获得的代码想要获取单击 java 脚本中按钮的页码任何人都可以帮我解决这个问题

$(document).ready(function() {
    $('.footable').footable();
    // $('.footable2').footable();
    $('.footable').footable().bind({
        'footable_paging': function (e) {
            paginateScroll();
        }
    });
});

function paginateScroll() {
    $('html, body').animate({
        scrollTop: $(".footable").offset().top
    }, 100);
    console.log('pagination button clicked'); //remove after test
}

我让它工作使用这个

$(document).ready(function () {
    $('.footable').footable();
    $('.footable').footable().bind({
        'footable_paging': function (e) {
            paginateScroll();
        }
    });


});

function paginateScroll() {
    $('html, body').animate({
        scrollTop: $(".footable").offset().top
    }, 100);
    $("a").click(function () {
        var number = $(this).text();
      
    });
}