


This article mainly introduces the JQuery.dataTables table plug-in to add a solution to jump to the specified page. It is very good and has reference value. Friends in need can refer to it
1. Solution
1. Add a custom toolbar and embed the text box
"dom": 'l<"toolbar">frtip', //自定义工具栏 //设置工具栏内容 //l - length changing input control //f - filtering input //t - The table! //i - Table information summary //p - pagination control //r - processing display element [javascript] view plain copy print? $("p.toolbar").html(' <b style="color:red">跳转第</b><input id="searchNumber"/><b style="color:red;">页</b>');
2. Listen to the change event of the text box, and execute the plug-in’s transfer page method
//调转到指定页面索引 ,注意大小写 var oTable = $('#example1').dataTable(); oTable.fnPageChange(page);
3. The plug-in is drawn successfully Finally, bind the value of the text box
//绘制的时候触发,绑定文本框的值 table.on('draw.dt', function (e, settings, data) { var info = table.page.info(); //此处的page为0开始计算 console.info('Showing page: ' + info.page + ' of ' + info.pages); $('#searchNumber').val(info.page + 1); });
2. Complete sample code
<table id="example1" class="table table-hover table-striped"> <thead> <tr> <th>编号</th> <th>姓名</th> <th>性别</th> <th>生日</th> <th>班级</th> </tr> </thead> </table> $(function () { //注意方法名为DataTable var table = $('#example1').DataTable({ "dom": 'l<"toolbar">frtip', //自定义工具栏 "pagingType": "full_numbers", lengthMenu: [3, 5, 10], processing: true,//是否使用进度条 serverSide: true,//是否启用数据库加载 ajax: { url: '/tableone/getlist', type: 'post', data: function (d) { d.name = '张三'; /* * 自定义aja参数 * 特别说明,此处可以重写控件的默认参数,比如分页参数 */ // d.start = 0; //console.info(d); //var page = $('#searchNumber').val(); //page = parseInt(page) || 1; //d.start = (page - 1) * d.length; } }, //指定列绑定的字段 columns: [ { data: 'sno' }, { data: 'sname' }, { data: 'ssex' }, { data: 'sbirthday' }, { data: 'class' } ], order: [ [3, 'desc'] ] }); $("p.toolbar").html(' <b style="color:red">跳转第</b><input id="searchNumber"/><b style="color:red;">页</b>'); //绑定分页事件----在切换分页的时候触发 //table.on('page.dt', function () { // var info = table.page.info(); // console.info('Showing page: ' + info.page + ' of ' + info.pages); //}); //绘制的时候触发,绑定文本框的值 table.on('draw.dt', function (e, settings, data) { var info = table.page.info(); //此处的page为0开始计算 console.info('Showing page: ' + info.page + ' of ' + info.pages); $('#searchNumber').val(info.page + 1); }); //监听文本框更改 $('#searchNumber').change(function () { var page = $(this).val(); page = parseInt(page) || 1; page = page - 1; //调转到指定页面索引 ,注意大小写 var oTable = $('#example1').dataTable(); oTable.fnPageChange(page); }); });
is displayed as follows:
The above is the detailed content of How to use JQuery.dataTables to implement the table plug-in to add the function of jumping to a specified page. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家分享40+ 个atom常用插件,并附上在atom中安装插件的方法,希望对大家有所帮助!

人工智能AI是当前广受认可的未来趋势和发展方向。虽然有些人担心AI可能会取代所有的工作,但实际上只会取代那些重复性高、产出低的工作。因此,我们应该学会更加聪明地工作,而不是使劲努力地工作。本文介绍5个由AI驱动的Intellij插件,这些插件可以帮助你提高生产力,减少繁琐的重复性工作,让你的工作更加高效、便捷。1GithubCopilotGithubCopilot是由OpenAI和GitHub联合开发的一款人工智能代码辅助工具。它使用了OpenAI的GPT模型来分析代码上下文,预测并生成新的代码

本篇文章给大家整理分享 6 个 Vue3 开发必备的 VSCode 插件,可以直接用过 VSCode 的插件中心直接安装使用,希望对大家有所帮助!

可以说,VisualStudioCode这个编辑器,让微软在开源社区赢回了王者段位,要知道全球2400万开发者中有1400万称VSCode为自己的家,再加上GitHub和VSCode的结合,几乎所有的程序员的都离不开VSCode,不过,VSCode如此优秀,值得每个程序员使用,甚至我觉得非程序员都可以用它来码字。如果你还没用过VSCode,那访问这里安装[1]一个吧,很可能就打开了一个新世界。今天分享14个非常实用VSCode插件,可以让你写代码如同神一般,尤其是

这篇文章主要介绍了这么多年来我在使用 VSCode 过程中用到的一些不错的插件。这些VSCode插件,帮你打造地表最强IDE!

本篇文章给大家总结了23个各种功能的VSCode 插件,可以帮助开发者提高开发效率和美观性,希望对大家有所帮助!

ChatGPT是一个超强的AI应用程序,OpenAI已经发布的GPT-4引起了更广泛的关注。ChatGPT是由OpenAI开发的专门从事对话的AI聊天机器人,其主要目标是使AI系统更自然地进行互动。大家可能都已经尝试过ChatGPT,今天讲一讲与这个全新工具互动的不同方法。本文总结了6个可以使ChatGPT成为日常助手(甚至超越日常助手)的工具!1.【GoogleChromeExtension】在任何地方使用ChatGPT想在任何地方轻松地使用ChatGPT吗?那么你可以使用Chrome插件(h

canvas插件有Fabric.js、EaselJS、Konva.js、Three.js、Paper.js、Chart.js和Phaser。详细介绍:1、Fabric.js 是一个基于Canvas的开源 JavaScript 库,它提供了一些强大的功能;2、EaselJS是CreateJS库中的一个模块,它提供了一套简化了Canvas编程的API;3、Konva.js等等。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
