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: 2949210 |
Download: 161 |
Latest Downloads
Red Alert Online
Delta Force
Pokémon UNITE
Fantasy Aquarium
Girls Frontline
Wings of Stars
Little Flower Fairy Fairy Paradise
Restaurant Cute Story
Shanhe Travel Exploration
Love and Producer
24 HoursReading Leaderboard
- 1 Why is My First Go `database/sql` Query So Much Slower Than Subsequent Queries?
- 2 Why Isn't My @font-face Working in Firefox?
- 3 Planet Zoo: 8 Best Ways To Make Money
- 4 Exploring the World of Python Programming
- 5 How Can I Efficiently Audit Historical Data Changes in SQL Server While Maintaining Performance?
- 6 How Can I Add Items to an IEnumerable?
- 7 Sludge Management and Dewatering Overview by Global Development and Growth
- 8 What are the Best Alternatives to PHP_Excel for Exporting and Importing Excel Files with Customization?
- 9 How to Efficiently Convert Enum Types to Strings in C and C ?
- 10 Why Doesn't $.load Post Form Data Correctly, and How Can I Fix It Using jQuery?
- 11 CHRISTMAS IS COMING!!
- 12 How and When Does __attribute__((constructor)) Initialize Code in Shared Libraries?
- 13 How Can I Access and Manipulate Iframe Content Using JavaScript/jQuery, Considering Cross-Origin Restrictions?
- 14 How to Correctly Parse Unix Timestamps in Go?
- 15 LEFT JOINs in SQL Server: What's the Difference Between `ON` and `WHERE` Clauses?
Latest Tutorials
-
- Go language practical GraphQL
- 2399 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 3815 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 2028 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 2809 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