current location: Home > Download > Learning resources > Web page production > "Newbies must learn AJAX"

"Newbies must learn AJAX"
Classify: Learning materials / Web page production | Release time: 2018-01-20 | visits: 2949301 |
Download: 161 |
Latest Downloads
Horror Beat Phase Maker
Himalayan Children
Zebra AI
Supermarket Manager Simulator
Red Alert Online
Delta Force
Pokémon UNITE
Fantasy Aquarium
Girls Frontline
Wings of Stars
24 HoursReading Leaderboard
- 1 Rexas Finance (RXS) Outpaces Dogecoin (DOGE) and Cardano (ADA) as It Approaches the End of Its Presale
- 2 How to optimize PS performance?
- 3 How to free computer memory?
- 4 Is slow PS loading related to the operating system?
- 5 Escaping the shadow cast by economic turbulence, bitcoin shines uniquely
- 6 Is slow PS loading related to the number of plugins?
- 7 Bitcoin Stabilizes as Pi Token Rebounds Amid Crypto Volatility
- 8 Remittix Token Reaches $14.3 Million During Its Presale Period
- 9 FanDuel Sportsbook Has Promos for the 2025 Men's College Basketball Tournament
- 10 As of Saturday, April 5, 2025, BetMGM bonus code “CUSE150” is still live
- 11 How to clean PS cache?
- 12 The long-awaited Altseason appears to be just around the corner
- 13 PayPal Expands Its Cryptocurrency Offerings in the US by Adding Support for Solana (SOL) and Chainlink (LINK)
- 14 How to update the PS version?
- 15 Kerala: Digital Payment Systems Introduced in Government Hospitals
Latest Tutorials
-
- Go language practical GraphQL
- 3094 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 4435 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 2426 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 3142 2024-03-29
1. Introduction to Ajax, advantages and disadvantages, application scenarios and technology
Introduction to Ajax:
Asynchronous Javascript And XML (Asynchronous JavaScript and XML)
It is not a single technology, but a combination that organically utilizes a series of technologies related to interactive web applications.
AJAX is a technology for creating fast, dynamic web pages. AJAX enables web pages to update asynchronously by exchanging small amounts of data with the server in the background. This means that parts of a web page can be updated without reloading the entire page.
advantage:
- The page does not refresh and the user experience is good.
- Asynchronous communication, faster response capability.
- Reduce redundant requests and reduce server load
-
Based on standardized and widely supported technology, no need to download plug-ins or applets
shortcoming:
- Ajax kills the back button, which destroys the browser's back mechanism.
- There are certain security issues.
- Support for search engines is relatively weak.
- Destroys the program's exception mechanism.
-
Unable to access
directly using URL
ajax application scenario
- Scenario 1. Data validation
- Scenario 2. Get data on demand
- Scenario 3. Automatically update the page
