Home Web Front-end HTML Tutorial How to use JQuery to implement pop-up windows, AJAX paging to load TAB classified data and solve the problem of data confusion?

How to use JQuery to implement pop-up windows, AJAX paging to load TAB classified data and solve the problem of data confusion?

Apr 05, 2025 am 09:06 AM
ai Solution overflow

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(&#39;click&#39;, &#39;.btn&#39;, function () {
    loadCategoryData(categoryId, currentPage);
  })

  $(&#39;.tab_p p&#39;).click(function () {
    currentPage = 1;
    categoryId = $(this).data(&#39;id&#39;);
    // Load the corresponding classification data loadCategoryData(categoryId, currentPage);
  })

  function loadCategoryData(id, page) {
    $(".tab_item").html(&#39;Loading...&#39;);
    $(this).addClass(&#39;cur&#39;).siblings().removeClass(&#39;cur&#39;);
    loadPageData(id, page);
  }

  // Listen to the scroll event $(&#39;.tab_item&#39;).scroll(function () {
    console.log(&#39;scroll...&#39;, $(&#39;.tab_item&#39;).scrollTop(), $(&#39;.tab_item&#39;).innerHeight())
    if (isLoading) {
      return;
    }
    // Determine whether to scroll to the bottom distance 150px Load more const scrollTop = $(this).scrollTop();
    const scrollHeight = $(this).prop(&#39;scrollHeight&#39;);
    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(&#39;getData...&#39;, 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: &#39;Category:&#39; categoryId&#39;,Title:&#39; i,
            img_url: &#39;https://picsum.photos/200/300?random=&#39; 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 = &#39;<div><img  src="&#39; list[i].img_url &#39;" 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>"&#39; list[i].title &#39;"&#39;;
      }
      $(".tab_item").append(html);
    }). finally(() => {
      isLoading = false;
    });
  }
</script>

Copy after login

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!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1653
14
PHP Tutorial
1251
29
C# Tutorial
1224
24
Which of the top ten currency trading platforms in the world are the latest version of the top ten currency trading platforms Which of the top ten currency trading platforms in the world are the latest version of the top ten currency trading platforms Apr 28, 2025 pm 08:09 PM

The top ten cryptocurrency trading platforms in the world include Binance, OKX, Gate.io, Coinbase, Kraken, Huobi Global, Bitfinex, Bittrex, KuCoin and Poloniex, all of which provide a variety of trading methods and powerful security measures.

Recommended reliable digital currency trading platforms. Top 10 digital currency exchanges in the world. 2025 Recommended reliable digital currency trading platforms. Top 10 digital currency exchanges in the world. 2025 Apr 28, 2025 pm 04:30 PM

Recommended reliable digital currency trading platforms: 1. OKX, 2. Binance, 3. Coinbase, 4. Kraken, 5. Huobi, 6. KuCoin, 7. Bitfinex, 8. Gemini, 9. Bitstamp, 10. Poloniex, these platforms are known for their security, user experience and diverse functions, suitable for users at different levels of digital currency transactions

What are the top ten virtual currency trading apps? The latest digital currency exchange rankings What are the top ten virtual currency trading apps? The latest digital currency exchange rankings Apr 28, 2025 pm 08:03 PM

The top ten digital currency exchanges such as Binance, OKX, gate.io have improved their systems, efficient diversified transactions and strict security measures.

How much is Bitcoin worth How much is Bitcoin worth Apr 28, 2025 pm 07:42 PM

Bitcoin’s price ranges from $20,000 to $30,000. 1. Bitcoin’s price has fluctuated dramatically since 2009, reaching nearly $20,000 in 2017 and nearly $60,000 in 2021. 2. Prices are affected by factors such as market demand, supply, and macroeconomic environment. 3. Get real-time prices through exchanges, mobile apps and websites. 4. Bitcoin price is highly volatile, driven by market sentiment and external factors. 5. It has a certain relationship with traditional financial markets and is affected by global stock markets, the strength of the US dollar, etc. 6. The long-term trend is bullish, but risks need to be assessed with caution.

What are the top currency trading platforms? The top 10 latest virtual currency exchanges What are the top currency trading platforms? The top 10 latest virtual currency exchanges Apr 28, 2025 pm 08:06 PM

Currently ranked among the top ten virtual currency exchanges: 1. Binance, 2. OKX, 3. Gate.io, 4. Coin library, 5. Siren, 6. Huobi Global Station, 7. Bybit, 8. Kucoin, 9. Bitcoin, 10. bit stamp.

Which of the top ten currency trading platforms in the world are among the top ten currency trading platforms in 2025 Which of the top ten currency trading platforms in the world are among the top ten currency trading platforms in 2025 Apr 28, 2025 pm 08:12 PM

The top ten cryptocurrency exchanges in the world in 2025 include Binance, OKX, Gate.io, Coinbase, Kraken, Huobi, Bitfinex, KuCoin, Bittrex and Poloniex, all of which are known for their high trading volume and security.

How to measure thread performance in C? How to measure thread performance in C? Apr 28, 2025 pm 10:21 PM

Measuring thread performance in C can use the timing tools, performance analysis tools, and custom timers in the standard library. 1. Use the library to measure execution time. 2. Use gprof for performance analysis. The steps include adding the -pg option during compilation, running the program to generate a gmon.out file, and generating a performance report. 3. Use Valgrind's Callgrind module to perform more detailed analysis. The steps include running the program to generate the callgrind.out file and viewing the results using kcachegrind. 4. Custom timers can flexibly measure the execution time of a specific code segment. These methods help to fully understand thread performance and optimize code.

How to use the chrono library in C? How to use the chrono library in C? Apr 28, 2025 pm 10:18 PM

Using the chrono library in C can allow you to control time and time intervals more accurately. Let's explore the charm of this library. C's chrono library is part of the standard library, which provides a modern way to deal with time and time intervals. For programmers who have suffered from time.h and ctime, chrono is undoubtedly a boon. It not only improves the readability and maintainability of the code, but also provides higher accuracy and flexibility. Let's start with the basics. The chrono library mainly includes the following key components: std::chrono::system_clock: represents the system clock, used to obtain the current time. std::chron

See all articles