


How to use JQuery to implement pop-up windows, AJAX paging to load TAB classified data and solve the problem of data confusion?
Detailed explanation of JQuery pop-up window and AJAX paging loading TAB classification data
This article will explain in detail how to use JQuery to implement the pop-up window of clicking buttons and load the data corresponding to the TAB classification ID through AJAX, and automatically load the next page data when each TAB scrolls to the bottom. The code provided in the question has a key flaw: every time the TAB is clicked, the previous loaded data is not cleared, causing the content of different TABs to be mixed together. The following will improve the code and explain the implementation details.
First of all, we need to understand that the core of the problem is how to correctly manage the AJAX requests and data corresponding to each TAB. The problem with the original code is that in the loadCategoryData function, the scroll event listener always acts on the same .tab_item element, causing data of different categories to interfere with each other. The solution is to set independent variables and state management for each TAB's data loading process.
The improved code is as follows, and the actual AJAX request is replaced by simulated data for easy understanding and testing:
<meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .tab_p { display: flex; } .tab_item { height: 300px; overflow: auto; } .tab_item img { height: 50px; object-fit: cover; } </style> <div class="btn">Click on my pop-up window and load Classification 1 data</div> <div class="tab_p"> <p data-id="1">Category 1</p> <p data-id="2">Category 2</p> <p data-id="3">Category 3</p> </div> <div class="tab_content"> <div class="tab_item"> <!--Classified content loading area--> </div> </div> <script src="./jquery.min.js"></script> <script> // There is no need to have a total number of pages, because the total number of pages is returned by the backend. The frontend does not need to know the total number of pages, but only needs to know the current page number // Initialize the classification ID currentPage total let categoryId = 1, currentPage = 1, total = 0; // Is it loading let isLoading = false; $(document).on('click', '.btn', function () { loadCategoryData(categoryId, currentPage); }) $('.tab_p p').click(function () { currentPage = 1; categoryId = $(this).data('id'); // Load the corresponding classification data loadCategoryData(categoryId, currentPage); }) function loadCategoryData(id, page) { $(".tab_item").html('Loading...'); $(this).addClass('cur').siblings().removeClass('cur'); loadPageData(id, page); } // Listen to the scroll event $('.tab_item').scroll(function () { console.log('scroll...', $('.tab_item').scrollTop(), $('.tab_item').innerHeight()) if (isLoading) { return; } // Determine whether to scroll to the bottom distance 150px Load more const scrollTop = $(this).scrollTop(); const scrollHeight = $(this).prop('scrollHeight'); const containerHeight = $(this).outerHeight(); if (scrollHeight - scrollTop - containerHeight < 150) { // The distance to the bottom is less than 150px to load more data currentPage; if (currentPage <= total) { loadPageData(categoryId, currentPage); } } }); // Simulate a function to load data on a certain page function getData(categoryId, page) { console.log('getData...', categoryId, page) return new Promise((resolve, reject) => { setTimeout(() => { // Randomly return page data const list = []; // Return 20 pieces of data each time for (var i = 0; i < 20; i ) { list.push({ title: 'Category:' categoryId',Title:' i, img_url: 'https://picsum.photos/200/300?random=' i }); } resolve({ list, // The data page of the current page, // The current page number totalPages: 100 // The total number of pages returned by the backend}); }, 1000); }); } function loadPageData(categoryId, page) { // Determine if (isLoading) { return; } isLoading = true; getData(categoryId, page).then(({ list, page, totalPages }) => { // Total number of updated pages total = totalPages; let html = ""; for (var i = 0; i < list.length; i ) { html = '<div><img src="' list[i].img_url '" alt="How to use JQuery to implement pop-up windows, AJAX paging to load TAB classified data and solve the problem of data confusion?" ><span>"' list[i].title '"'; } $(".tab_item").append(html); }). finally(() => { isLoading = false; }); } </script>
This code avoids duplicate requests through the isLoading variable, and uses Promise to handle asynchronous operations to ensure the order and correctness of data loading. At the same time, by judging the distance from the bottom in the scrolling event, the loading of the next page is triggered to improve the user experience. It should be noted that in actual applications, the /ajax.php?mod=tab interface needs to be replaced according to actual conditions. In addition, the data returned by the backend should include the total number of pages information so that the frontend can accurately determine whether the next page data needs to be loaded.
The above is the detailed content of How to use JQuery to implement pop-up windows, AJAX paging to load TAB classified data and solve the problem of data confusion?. For more information, please follow other related articles on the PHP Chinese website!

The core purpose of HTML is to enable the browser to understand and display web content. 1. HTML defines the web page structure and content through tags, such as, to, etc. 2. HTML5 enhances multimedia support and introduces and tags. 3.HTML provides form elements to support user interaction. 4. Optimizing HTML code can improve web page performance, such as reducing HTTP requests and compressing HTML.

HTMLtagsareessentialforwebdevelopmentastheystructureandenhancewebpages.1)Theydefinelayout,semantics,andinteractivity.2)SemantictagsimproveaccessibilityandSEO.3)Properuseoftagscanoptimizeperformanceandensurecross-browsercompatibility.

A consistent HTML encoding style is important because it improves the readability, maintainability and efficiency of the code. 1) Use lowercase tags and attributes, 2) Keep consistent indentation, 3) Select and stick to single or double quotes, 4) Avoid mixing different styles in projects, 5) Use automation tools such as Prettier or ESLint to ensure consistency in styles.

Solution to implement multi-project carousel in Bootstrap4 Implementing multi-project carousel in Bootstrap4 is not an easy task. Although Bootstrap...

How to achieve the effect of mouse scrolling event penetration? When we browse the web, we often encounter some special interaction designs. For example, on deepseek official website, �...

The default playback control style of HTML video cannot be modified directly through CSS. 1. Create custom controls using JavaScript. 2. Beautify these controls through CSS. 3. Consider compatibility, user experience and performance, using libraries such as Video.js or Plyr can simplify the process.

Potential problems with using native select on mobile phones When developing mobile applications, we often encounter the need for selecting boxes. Normally, developers...

What are the disadvantages of using native select on your phone? When developing applications on mobile devices, it is very important to choose the right UI components. Many developers...


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

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

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version
Visual web development tools

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