繁体   English   中英

我想获取用于服务器端处理的 Foo 表的页码

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

这是我在点击分页按钮时可以获得的 foo 表代码想要在 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();
      
    });
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM