Load Box Content Dynamically using AJAX
This tutorial demonstrates creating dynamic page boxes loaded via AJAX, enabling instant refresh without full page reloads. It leverages jQuery and JavaScript. Think of it as a custom Facebook-style content box loader.
Key Concepts:
- AJAX and jQuery dynamically load and refresh page boxes without complete page reloads, mirroring the functionality of sites like Facebook and Twitter.
- The process involves loading boxes after the DOM is ready, using an AJAX function for each box, displaying loading messages, and employing a server-side script (e.g., PHP) to return the HTML for each box. This HTML is then inserted into the corresponding box on the webpage.
- The system's dynamism stems from using each box's
id
attribute to generate variables, which are then matched against the server-side script. Content is easily reloaded, and new boxes can be added without extra CSS or JavaScript.
Advantages of this AJAX Approach:
- Faster page load times due to content box loading after the DOM is ready.
- Content refresh within boxes without full page reloads.
- Aligns with modern web development practices used by major platforms (Facebook, Twitter, etc.).
- Adding new boxes requires no additional CSS or JavaScript code.
How it Works:
- After page load, jQuery calls an AJAX function for each box.
- A loading message is displayed.
- A server-side script (e.g., PHP) returns the HTML for the box.
- The content is loaded into the box.
- Content is easily reloaded by hovering over the box to reveal a refresh image; clicking this image triggers a content refresh.
Dynamic Functionality:
Each box is a <div> with a unique <code>id
attribute. Elements within this <div> use the same <code>id
. jQuery uses this id
to match against the server-side script, making the system dynamic because all variables are generated based on the box's id
.
jQuery Code:
This code runs after page load, initializing box controls and attaching events.
jQuery(document).ready(function($) { $('.box').mouseover(function(){ var dyn_var = "https://www.php.cn/link/93ac0c50dd620dc7b88e5fe05c70e15b" + this.id.replace("box","controls"); $(dyn_var).show(); }); $('.box .controls').hide(); $('.box').mouseout(function(){ $('.box .controls').hide(); }); loadboxcontent('box-id1'); loadboxcontent('box-id2'); // ...add more box IDs as needed... });
This function loads content into a child <div> based on the provided <code>box_id
. It dynamically creates variables to handle objects. The box_id
is used to identify both the container <div> and the corresponding PHP script (e.g., <code>box_id.php
).
function loadboxcontent(box_id){ if (box_id == '') { return false; } var loading_image="/images/loader.gif"; var loading_text = ' Loading '+box_id.replace(/-/g," ")+'...'; var script_path = "../php/"; var box_container = document.getElementById(box_id); box_container.innerHTML = loading_text; var result = false; $.ajax({ url: script_path+box_id+".php", type: 'POST', async: true, data: {blogs: 30}, success: function(data) { result = true; document.getElementById(box_id).innerHTML = data; } }); if (result == false) { document.getElementById(box_id).innerHTML = 'Could not refresh data, try refreshing the page'; } else { alert("Content refreshed successfully!"); } }
HTML Code (Example):
<div id="box-id1" class="box"> <h2 id="a-href-https-www-php-cn-link-ac-c-dd-dc-b-e-fe-c-e-b-New-Blogs-a"><a href="https://www.php.cn/link/93ac0c50dd620dc7b88e5fe05c70e15b">New Blogs</a></h2> <div id="controls-id1" class="controls"> <a href="https://www.php.cn/link/93ac0c50dd620dc7b88e5fe05c70e15b"><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/174119443682979.png" class="lazy" alt="Load Box Content Dynamically using AJAX "></a> </div> </div>
CSS Code:
jQuery(document).ready(function($) { $('.box').mouseover(function(){ var dyn_var = "https://www.php.cn/link/93ac0c50dd620dc7b88e5fe05c70e15b" + this.id.replace("box","controls"); $(dyn_var).show(); }); $('.box .controls').hide(); $('.box').mouseout(function(){ $('.box .controls').hide(); }); loadboxcontent('box-id1'); loadboxcontent('box-id2'); // ...add more box IDs as needed... });
Images:
loader.gif
refresh.png
(The FAQs section from the original input was omitted as it was a separate, unrelated section on general AJAX usage.)
The above is the detailed content of Load Box Content Dynamically using AJAX. For more information, please follow other related articles on the PHP Chinese website!

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

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











The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

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.

JavaScript is the core language of modern web development and is widely used for its diversity and flexibility. 1) Front-end development: build dynamic web pages and single-page applications through DOM operations and modern frameworks (such as React, Vue.js, Angular). 2) Server-side development: Node.js uses a non-blocking I/O model to handle high concurrency and real-time applications. 3) Mobile and desktop application development: cross-platform development is realized through ReactNative and Electron to improve development efficiency.

This article demonstrates frontend integration with a backend secured by Permit, building a functional EdTech SaaS application using Next.js. The frontend fetches user permissions to control UI visibility and ensures API requests adhere to role-base

I built a functional multi-tenant SaaS application (an EdTech app) with your everyday tech tool and you can do the same. First, what’s a multi-tenant SaaS application? Multi-tenant SaaS applications let you serve multiple customers from a sing

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.

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.
