How to use JavaScript to implement table paging function?
Oct 20, 2023 pm 06:19 PMHow to use JavaScript to implement table paging function?
With the development of the Internet, more and more websites use tables to display data. In some cases where the amount of data is large, the data needs to be displayed in pages to improve user experience. This article will introduce how to use JavaScript to implement table paging function and provide specific code examples.
1. HTML structure
First, we need to prepare an HTML structure to host tables and paging buttons. We can use the <table>
tag to create a table, and the <div>
tag as a container for paging buttons. The specific code is as follows:
<table id="myTable"> <thead> <tr> <th>列名1</th> <th>列名2</th> <th>列名3</th> </tr> </thead> <tbody> <!-- 表格數(shù)據(jù) --> </tbody> </table> <div id="pagination"> <!-- 分頁(yè)按鈕 --> </div>
2. JavaScript implementation
Next, we use JavaScript to implement the table paging function. First, we need to define some variables:
var table = document.getElementById("myTable"); // 表格 var tbody = table.getElementsByTagName("tbody")[0]; // 表格的 tbody 元素 var rowsPerPage = 10; // 每頁(yè)顯示的行數(shù) var currentPage = 0; // 當(dāng)前頁(yè)碼 var totalPages = Math.ceil(tbody.rows.length / rowsPerPage); // 總頁(yè)數(shù) var pagination = document.getElementById("pagination"); // 分頁(yè)按鈕的容器
Then, we create a function to display the data of the specified page number:
function displayPage(page) { // 清空表格 while (tbody.firstChild) { tbody.removeChild(tbody.firstChild); } // 計(jì)算起始行和結(jié)束行的索引 var startIndex = page * rowsPerPage; var endIndex = Math.min(startIndex + rowsPerPage, tbody.rows.length); // 將指定頁(yè)碼的數(shù)據(jù)添加到表格中 for (var i = startIndex; i < endIndex; i++) { tbody.appendChild(tbody.rows[i].cloneNode(true)); } }
Next, we create a function to generate paging buttons:
function createPagination() { // 清空分頁(yè)按鈕 while (pagination.firstChild) { pagination.removeChild(pagination.firstChild); } // 添加上一頁(yè)按鈕 var previousButton = document.createElement("button"); previousButton.innerText = "上一頁(yè)"; previousButton.onclick = function() { currentPage = Math.max(currentPage - 1, 0); displayPage(currentPage); }; pagination.appendChild(previousButton); // 添加頁(yè)碼按鈕 for (var i = 0; i < totalPages; i++) { var pageButton = document.createElement("button"); pageButton.innerText = i + 1; pageButton.onclick = function() { currentPage = parseInt(this.innerText) - 1; displayPage(currentPage); }; pagination.appendChild(pageButton); } // 添加下一頁(yè)按鈕 var nextButton = document.createElement("button"); nextButton.innerText = "下一頁(yè)"; nextButton.onclick = function() { currentPage = Math.min(currentPage + 1, totalPages - 1); displayPage(currentPage); }; pagination.appendChild(nextButton); }
Finally, we call the displayPage
function and the createPagination
function to display the initial page number data and generate the paging button:
displayPage(currentPage); createPagination();
3. Complete code example
var table = document.getElementById("myTable"); var tbody = table.getElementsByTagName("tbody")[0]; var rowsPerPage = 10; var currentPage = 0; var totalPages = Math.ceil(tbody.rows.length / rowsPerPage); var pagination = document.getElementById("pagination"); function displayPage(page) { while (tbody.firstChild) { tbody.removeChild(tbody.firstChild); } var startIndex = page * rowsPerPage; var endIndex = Math.min(startIndex + rowsPerPage, tbody.rows.length); for (var i = startIndex; i < endIndex; i++) { tbody.appendChild(tbody.rows[i].cloneNode(true)); } } function createPagination() { while (pagination.firstChild) { pagination.removeChild(pagination.firstChild); } var previousButton = document.createElement("button"); previousButton.innerText = "上一頁(yè)"; previousButton.onclick = function() { currentPage = Math.max(currentPage - 1, 0); displayPage(currentPage); }; pagination.appendChild(previousButton); for (var i = 0; i < totalPages; i++) { var pageButton = document.createElement("button"); pageButton.innerText = i + 1; pageButton.onclick = function() { currentPage = parseInt(this.innerText) - 1; displayPage(currentPage); }; pagination.appendChild(pageButton); } var nextButton = document.createElement("button"); nextButton.innerText = "下一頁(yè)"; nextButton.onclick = function() { currentPage = Math.min(currentPage + 1, totalPages - 1); displayPage(currentPage); }; pagination.appendChild(nextButton); } displayPage(currentPage); createPagination();
4. Summary
Through the above JavaScript code, we can realize the table paging function. First, we need to prepare the HTML structure containing the table and pagination buttons. Then, we use JavaScript to control the display of data for a specified page number and generate paging buttons. Finally, call related functions to display the data of the initial page number and generate paging buttons. The code examples provided in this article can help you understand how to use JavaScript to implement table paging function, and can be modified and customized according to your own needs. Hope this article is helpful to you!
The above is the detailed content of How to use JavaScript to implement table paging function?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

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

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

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

1. Create a new PPT file and name it [PPT Tips] as an example. 2. Double-click [PPT Tips] to open the PPT file. 3. Insert a table with two rows and two columns as an example. 4. Double-click on the border of the table, and the [Design] option will appear on the upper toolbar. 5. Click the [Shading] option and click [Picture]. 6. Click [Picture] to pop up the fill options dialog box with the picture as the background. 7. Find the tray you want to insert in the directory and click OK to insert the picture. 8. Right-click on the table box to bring up the settings dialog box. 9. Click [Format Cells] and check [Tile images as shading]. 10. Set [Center], [Mirror] and other functions you need, and click OK. Note: The default is for pictures to be filled in the table

1. Open the worksheet and find the [Start]-[Conditional Formatting] button. 2. Click Column Selection and select the column to which conditional formatting will be added. 3. Click the [Conditional Formatting] button to bring up the option menu. 4. Select [Highlight conditional rules]-[Between]. 5. Fill in the rules: 20, 24, dark green text with dark fill color. 6. After confirmation, the data in the selected column will be colored with corresponding numbers, text, and cell boxes according to the settings. 7. Conditional rules without conflicts can be added repeatedly, but for conflicting rules WPS will replace the previously established conditional rules with the last added rule. 8. Repeatedly add the cell columns after [Between] rules 20-24 and [Less than] 20. 9. If you need to change the rules, you can just clear the rules and then reset the rules.

Being able to skillfully make forms is not only a necessary skill for accounting, human resources, and finance. For many sales staff, learning to make forms is also very important. Because the data related to sales is very large and complex, and it cannot be simply recorded in a document to explain the problem. In order to enable more sales staff to be proficient in using Excel to make tables, the editor will introduce the table making issues about sales forecasting. Friends in need should not miss it! 1. Open [Sales Forecast and Target Setting], xlsm, to analyze the data stored in each table. 2. Create a new [Blank Worksheet], select [Cell], and enter [Label Information]. [Drag] downward and [Fill] the month. Enter [Other] data and click [

MySQL and PL/SQL are two different database management systems, representing the characteristics of relational databases and procedural languages ??respectively. This article will compare the similarities and differences between MySQL and PL/SQL, with specific code examples to illustrate. MySQL is a popular relational database management system that uses Structured Query Language (SQL) to manage and operate databases. PL/SQL is a procedural language unique to Oracle database and is used to write database objects such as stored procedures, triggers and functions. same

When we make tables, the first thing we think of is to use Excel software to make tables. But did you know that Word software is actually very convenient to make tables. Sometimes when we make tables in Word software, we need to enter serial numbers or numbers. , if you enter them one by one manually, it will be very troublesome. In fact, there is an operation in the word software that can automatically insert numbers or serial numbers. So let’s learn with the editor how to insert automatic numbering or serial numbers into Word tables. . 1. First create a Word document and insert a table. 2. Select the column or cell where you want to insert automatic serial numbers or numbers. 3. Click "Start" - "Number". 4. Select one of the style numbers. 5.

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

Word software is indispensable to us and needs to be used frequently. I have learned how to edit tables using Word software before. However, if I accidentally edit the table in the horizontal and vertical directions, and I don’t want to waste time re-creating it, is it possible to change the horizontal and vertical directions of the table? Woolen cloth? The answer is of course yes. Next, the editor will introduce to you in detail how to swap tables horizontally and vertically in Word. Let us learn together. First, we need to swap the rows and columns of the Word table below. To do this, we need to first select the table entirely, then right-click and select the copy function. Step 2: After selecting copy, we minimize word, then open an Excel table, right-click, select paste, and paste it into Exc

Sometimes, we often encounter counting problems in Word tables. Generally, when encountering such problems, most students will copy the Word table to Excel for calculation; some students will silently pick up the calculator. Calculate. Is there a quick way to calculate it? Of course there is, in fact the sum can also be calculated in Word. So, do you know how to do it? Today, let’s take a look together! Without further ado, friends in need should quickly collect it! Step details: 1. First, we open the Word software on the computer and open the document that needs to be processed. (As shown in the picture) 2. Next, we position the cursor on the cell where the summed value is located (as shown in the picture); then, we click [Menu Bar
