search
HomeWeb Front-endJS TutorialjQuery dynamically appends page data and event delegation

This article mainly introduces the relevant information of jQuery dynamically appending page data and event delegation in detail. It has certain reference value. Interested friends can refer to it. I hope it can help everyone.

The task we want to perform is that there are some pictures at the beginning of the page. We have a More Photos link at the bottom. After clicking, we will load some pictures to the current page. Then click the link and continue loading until we The listed page loads and the link disappears.

The first rendering is as follows:

This only captures the bottom part of the page. When the mouse is hovering over the image, text will appear, and when the mouse is moved out, the text will disappear.
What we have to do now is to load another part of the data when we click on the MorePhotos link below, and then click to load another part of the data until the data is loaded.
First, the code in the body is as follows:


<p id = "container">
<h1 id="nbsp-Photo-nbsp-Gallery"> Photo Gallery</h1>

<p id = "gallery">
  <p class = "photo">
    <img  src = "./images/1.jpg" alt="jQuery dynamically appends page data and event delegation" >
    <p class = "details">
      <p class = "description">The Cullin Mountains, Isle of skye ....</p>
      <p class = "date">12/24/2000</p>
      <p class = "photographer"> Alasdair Dougall</p>
    </p>
  </p>

  <p class = "photo">
    <img  src = "./images/2.jpg" alt="jQuery dynamically appends page data and event delegation" >
    <p class = "details">
      <p class = "description">The Cullin Mountains, Isle of skye.... </p>
      <p class = "date">12/24/2000</p>
      <p class = "photographer"> Alasdair Dougall</p>
    </p>
  </p>

    <p class = "photo">
    <img  src = "./images/3.jpg" alt="jQuery dynamically appends page data and event delegation" >
    <p class = "details">
      <p class = "description">The Cullin Mountains, Isle of skye.... </p>
      <p class = "date">12/24/2000</p>
      <p class = "photographer"> Alasdair Dougall</p>
    </p>
  </p>
//若干图片

</p>

 <p class = "link"><a id = "more-photos" href = "1.html"> More Photos >></a></p> 
</p>

Then write several HTML code snippets in the same root directory for loading.

For example, I have a 1.html code as follows


<p class = "photo">
    <img  src = "./images/1.jpg" alt="jQuery dynamically appends page data and event delegation" >
    <p class = "details">
      <p class = "description">The Cullin Mountains, Isle of skye </p>
      <p class = "date">12/24/2000</p>
      <p class = "photographer"> Alasdair Dougall</p>
    </p>
  </p>

  <p class = "photo">
    <img  src = "./images/2.jpg" alt="jQuery dynamically appends page data and event delegation" >
    <p class = "details">
      <p class = "description">The Cullin Mountains, Isle of skye </p>
      <p class = "date">12/24/2000</p>
      <p class = "photographer"> Alasdair Dougall</p>
    </p>
  </p>

    <p class = "photo">
    <img  src = "./images/3.jpg" alt="jQuery dynamically appends page data and event delegation" >
    <p class = "details">
      <p class = "description">The Cullin Mountains, Isle of skye </p>
      <p class = "date">12/24/2000</p>
      <p class = "photographer"> Alasdair Dougall</p>
    </p>
  </p>

    <p class = "photo">
    <img  src = "./images/4.jpg" alt="jQuery dynamically appends page data and event delegation" >
    <p class = "details">
      <p class = "description">The Cullin Mountains, Isle of skye </p>
      <p class = "date">12/24/2000</p>
      <p class = "photographer"> Alasdair Dougall</p>
    </p>
  </p>

    <p class = "photo">
    <img  src = "./images/5.jpg" alt="jQuery dynamically appends page data and event delegation" >
    <p class = "details">
      <p class = "description">The Cullin Mountains, Isle of skye </p>
      <p class = "date">12/24/2000</p>
      <p class = "photographer"> Alasdair Dougall</p>
    </p>
  </p>

    <p class = "photo">
    <img  src = "./images/6.jpg" alt="jQuery dynamically appends page data and event delegation" >
    <p class = "details">
      <p class = "description">The Cullin Mountains, Isle of skye </p>
      <p class = "date">12/24/2000</p>
      <p class = "photographer"> Alasdair Dougall</p>
    </p>
  </p>

In this HTML fragment, I introduced 6 images. Other fragments such as 2.html, etc. can be written imitating the above one. After defining many HTML fragments, use jQuery to dynamically append data.

First introduce a jquery library http://libs.baidu.com/jquery/1.9.0/jquery.js


##

<script>
  $(document).ready(function(){
  //首先定义一个变量来记录当前是多少页
    var pageNum = 1;

    //给链接添加点击事件
    $("#more-photos").click(function(event){
      event.preventDefault();
      var $link = $(this);

      //获得当前所点链接的url
      var url = $link.attr(&#39;href&#39;);

      //如果该链接的url存在,进行页面追加
      if(url){
        $.get(url, function(data){
          $("#gallery").append(data);
        });

    pageNum ++;
  //总共有十个片段要追加,名称分别为1.html,2.html ...10.html
    当当前页面的总数小于总数时,进行链接更新。
    if(pageNum < 10){
      $link.attr(&#39;href&#39;, &#39;./&#39;+pageNum+&#39;.html&#39;);
        }

    //当将所有片段追加完成后,移除链接。
      else{
        $link.remove();
      }
      }
    })
  });

The above code is You can dynamically add data to the page.

But the following error will appear in Google's browser:

jquery.js:8475 XMLHttpRequest cannot load file:///C:/Users/%E9%95 %BF%E5%AD%99%E4%B8%B9%E5%87%A4/Desktop/webtest/1.html. Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https .

Tested in IE10 environment, no problem.


The solution is to install a web server, then copy the file to the project, access it with the path in the web server, and there will be no problem! It looks like http://localhost:8080/ajax/ajaxLoad.html

Because there is also a mouse hover event, when we hover the mouse over a picture, text will appear , the text on the picture disappears when moved out.


$(document).ready(function(){
    $(&#39;p .photo&#39;).hover(function(){
      $(this).find(&#39;.details&#39;).fadeTo(&#39;slow&#39;, 0.7);
    },function(){
        $(this).find(&#39;.details&#39;).fadeOut(&#39;slow&#39;);
    })
  });

Or you can combine the above code to reduce redundant code:


$(document).ready(function(){
  $(&#39;p.photo&#39;).on(&#39;mouseenter mouseleave&#39;, 
      function(event){
      var $details = $(this).find(&#39;.details&#39;);
      if(event.type == &#39;mouseenter&#39;){
        $details.fadeTo(&#39;slow&#39;, 0.7);
        //0.7代表的是透明度
      }
      else{
        $details.fadeOut(&#39;slow&#39;);
      }
    })
});

When we use the above When the two codes add mouse hover events to each image, only those images on the original page will be bound to the event, but the event will not be bound to the dynamically loaded images. Because event handlers are only added to elements that already exist when the method is called, elements dynamically appended in this way will not have those events bound to them.


So there are two solutions:


1. Rebind the event handler after dynamic loading

2. Bind the event at the beginning On existing elements, relies on event bubbling.

The next step is to use jquery's delegate method;


$(document).ready(function(){
    $(&#39;#gallery&#39;).on(&#39;mouseenter mouseleave&#39;, &#39;p.photo&#39;, function(event){

      var $details = $(this).find(&#39;.details&#39;);
      if(event.type == &#39;mouseenter&#39;){
        $details.fadeTo(&#39;slow&#39;, 0.7);
      }
      else{
        $details.fadeOut(&#39;slow&#39;);
      }
    })
  })

$('#gallery').on('mouseenter mouseleave', 'p.photo ', function(event), when 'p.photo' is used as the second parameter, the .on() method will map this to the element in the gallery that matches the selector. In other words, it is this. Points to the p class= 'photo' element in gallery.

So in the last added page, since they are all elements under gallery, corresponding events will be added to each picture.


Perhaps if you don't know which parent element the page you want to add belongs to, you can replace '#gallery' in $('#gallery').on() with document so you don't have to worry about making the wrong choice. Container. Because document is the ancestor of all elements in the page,


But there are drawbacks to using document:


When the DOM nested structure is deep, events bubble through a large number of Ancestor elements will have a large performance loss.

But there are other reasons why we choose document as the delegation scope.
Generally speaking, it will only be bound when the corresponding DOM element is loaded. Define the event handler. This is why we put the code inside $(document).ready(function(){}. But the document element is called almost immediately as the page loads. Bind the handler There is no need to wait until the complete DOM construction is completed to reach the document. For example, the above code can be written as: '

##

(function($){
    $(document).on(&#39;mouseenter mouseleave&#39;, &#39;p.photo&#39;, function(event){

      var $details = $(this).find(&#39;.details&#39;);
      if(event.type == &#39;mouseenter&#39;){
        $details.fadeTo(&#39;slow&#39;, 0.7);
      }
      else{
        $details.fadeOut(&#39;slow&#39;);
      }
    })
  })(jQuery);

Because it does not wait until the entire document is ready, it can ensure that all

As long as the element is presented on the page, the mouseenter and mouseleave behaviors can be applied.

The above is all the knowledge about using jQuery to dynamically append page data and event delegation;# Attached below is the source code.

##




  动态加载
  
  

  <script>
  $(document).ready(function(){

    var pageNum = 1;
    $("#more-photos").click(function(event){
      event.preventDefault();
      var $link = $(this);
      var url = $link.attr(&#39;href&#39;);
      console.log(url);
      if(url){
        $.get(url, function(data){
          $("#gallery").append(data);
        });

        pageNum ++;
        if(pageNum < 4){
          $link.attr(&#39;href&#39;, &#39;./&#39;+pageNum+&#39;.html&#39;);
        }


      else{
        $link.remove();
      }
      }
    })
  })

  // $(document).ready(function(){
  // $(&#39;p .photo&#39;).hover(function(){
  //   $(this).find(&#39;.details&#39;).fadeTo(&#39;slow&#39;, 0.7);
  // },function(){
  //     $(this).find(&#39;.details&#39;).fadeOut(&#39;slow&#39;);
  // })
  // })

  $(document).ready(function(){
    $(&amp;#39;#gallery&amp;#39;).on(&amp;#39;mouseenter mouseleave&amp;#39;, &amp;#39;p.photo&amp;#39;, function(event){

      var $details = $(this).find(&amp;#39;.details&amp;#39;);
      if(event.type == &amp;#39;mouseenter&amp;#39;){
        $details.fadeTo(&amp;#39;slow&amp;#39;, 0.7);
      }
      else{
        $details.fadeOut(&amp;#39;slow&amp;#39;);
      }
    })
  })

  </script>


Photo Gallery

jQuery dynamically appends page data and event delegation

The Cullin Mountains, Isle of skye ....

12/24/2000

Alasdair Dougall

jQuery dynamically appends page data and event delegation

The Cullin Mountains, Isle of skye....

12/24/2000

Alasdair Dougall

jQuery dynamically appends page data and event delegation

The Cullin Mountains, Isle of skye....

12/24/2000

Alasdair Dougall

jQuery dynamically appends page data and event delegation

The Cullin Mountains, Isle of skye .....

12/24/2000

Alasdair Dougall

jQuery dynamically appends page data and event delegation

The Cullin Mountains, Isle of skye ....

12/24/2000

Alasdair Dougall

jQuery dynamically appends page data and event delegation

The Cullin Mountains, Isle of skye ...

12/24/2000

Alasdair Dougall

jQuery dynamically appends page data and event delegation

The Cullin Mountains, Isle of skye....

12/24/2000

Alasdair Dougall

jQuery dynamically appends page data and event delegation

The Cullin Mountains, Isle of skye.....

12/24/2000

Alasdair Dougall

jQuery dynamically appends page data and event delegation

The Cullin Mountains, Isle of skye ......

12/24/2000

Alasdair Dougall

jQuery dynamically appends page data and event delegation

The Cullin Mountains, Isle of skye

12/24/2000

Alasdair Dougall

jQuery dynamically appends page data and event delegation

The Cullin Mountains, Isle of skye

12/24/2000

Alasdair Dougall

jQuery dynamically appends page data and event delegation

The Cullin Mountains, Isle of skye

12/24/2000

Alasdair Dougall

jQuery dynamically appends page data and event delegation

The Cullin Mountains, Isle of skye

12/24/2000

Alasdair Dougall

jQuery dynamically appends page data and event delegation

The Cullin Mountains, Isle of skye

12/24/2000

Alasdair Dougall

jQuery dynamically appends page data and event delegation

The Cullin Mountains, Isle of skye

12/24/2000

Alasdair Dougall

Related recommendations:


Detailed explanation of the delegation pattern of PHP design patterns

Sharing native JS and jQuery example code about event delegation in JavaScript

Detailed explanation of Javascript event delegation

The above is the detailed content of jQuery dynamically appends page data and event delegation. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
From Websites to Apps: The Diverse Applications of JavaScriptFrom Websites to Apps: The Diverse Applications of JavaScriptApr 22, 2025 am 12:02 AM

JavaScript is widely used in websites, mobile applications, desktop applications and server-side programming. 1) In website development, JavaScript operates DOM together with HTML and CSS to achieve dynamic effects and supports frameworks such as jQuery and React. 2) Through ReactNative and Ionic, JavaScript is used to develop cross-platform mobile applications. 3) The Electron framework enables JavaScript to build desktop applications. 4) Node.js allows JavaScript to run on the server side and supports high concurrent requests.

Python vs. JavaScript: Use Cases and Applications ComparedPython vs. JavaScript: Use Cases and Applications ComparedApr 21, 2025 am 12:01 AM

Python is more suitable for data science and automation, while JavaScript is more suitable for front-end and full-stack development. 1. Python performs well in data science and machine learning, using libraries such as NumPy and Pandas for data processing and modeling. 2. Python is concise and efficient in automation and scripting. 3. JavaScript is indispensable in front-end development and is used to build dynamic web pages and single-page applications. 4. JavaScript plays a role in back-end development through Node.js and supports full-stack development.

The Role of C/C   in JavaScript Interpreters and CompilersThe Role of C/C in JavaScript Interpreters and CompilersApr 20, 2025 am 12:01 AM

C and C play a vital role in the JavaScript engine, mainly used to implement interpreters and JIT compilers. 1) C is used to parse JavaScript source code and generate an abstract syntax tree. 2) C is responsible for generating and executing bytecode. 3) C implements the JIT compiler, optimizes and compiles hot-spot code at runtime, and significantly improves the execution efficiency of JavaScript.

JavaScript in Action: Real-World Examples and ProjectsJavaScript in Action: Real-World Examples and ProjectsApr 19, 2025 am 12:13 AM

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

JavaScript and the Web: Core Functionality and Use CasesJavaScript and the Web: Core Functionality and Use CasesApr 18, 2025 am 12:19 AM

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.

Understanding the JavaScript Engine: Implementation DetailsUnderstanding the JavaScript Engine: Implementation DetailsApr 17, 2025 am 12:05 AM

Understanding how JavaScript engine works internally is important to developers because it helps write more efficient code and understand performance bottlenecks and optimization strategies. 1) The engine's workflow includes three stages: parsing, compiling and execution; 2) During the execution process, the engine will perform dynamic optimization, such as inline cache and hidden classes; 3) Best practices include avoiding global variables, optimizing loops, using const and lets, and avoiding excessive use of closures.

Python vs. JavaScript: The Learning Curve and Ease of UsePython vs. JavaScript: The Learning Curve and Ease of UseApr 16, 2025 am 12:12 AM

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

Python vs. JavaScript: Community, Libraries, and ResourcesPython vs. JavaScript: Community, Libraries, and ResourcesApr 15, 2025 am 12:16 AM

Python and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.

See all articles

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

mPDF

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),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.