,done: function (res) {
// 光标离开 执行跳转页面
$('.layui-laypage-skip input').on('blur',function () {
table.reload('test', {
page: {
curr: $(this).val() 传入要跳转的页码数
}
,where: {
// 传当前页
page:$(this).val() 传入要跳转的页码数
}
}, 'data');
});
}
光标离开跳转到第一页