current location:Home>Download>Learning resources>Web page production>"XmlHttp Chinese First Edition"
"XmlHttp Chinese First Edition"
Classify:Learning materials/Web page production | Release time: 2018-01-17 | visits: 2963956 |
Download: 211 |
Latest Downloads
Fantasy Aquarium
Girls Frontline
Wings of Stars
Little Flower Fairy Fairy Paradise
Restaurant Cute Story
Shanhe Travel Exploration
Love and Producer
The most powerful brain 3
Odd Dust: Damila
Young Journey to the West 2
24 HoursReading Leaderboard
- 1OKX Launches "Earn DOGS with Your Friends" Campaign, Inviting Users to Join Together and Unlock Rewards
- 2Introduction to PHP
- 3You probably dont need a monorepo
- 4Introducing Swoop.js: Simplifying Web Development
- 5Shiba Inu (SHIB) Price Prediction: The $0.000013 Support Is Crucial
- 6Hash Map using Javascript
- 7In Washagana TV's latest video, we show you playing an analog game with voice actress Kikuko Inoue. Try a quiz game about Heisei anime
- 8RedMagic Gaming Tablet 2 pre-orders open ahead of imminent launch
- 9Illegal Bitcoin Mine Operations Cracked Down in Thailand's Ratchaburi Province
- 10Building a Robust Test Suite for Single Page Applications (SPAs)
- 11Building an Infinite Scroll Component in React
- 12Developing a custom binary protocol for Node.js and WebSockets based applications with authorization via JWT
- 13Shiba Inu Unveils Plans to Launch a Decentralized Autonomous Organization (DAO)
- 14Building Accessible React Applications
- 15Efficient React Development: Leveraging Context and Hooks for Seamless Data Handling
Latest Tutorials
-
- Go language practical GraphQL
- 1339 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 2737 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 1253 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 2107 2024-03-29
What is XmlHttp?
The most common definition is: XmlHttp is a set of APIs that can transmit or receive XML and other data through the http protocol in JavaScript, VbScript, Jscript and other scripting languages. The biggest use of XmlHttp is that it can update part of the content of a web page without refreshing the entire page.
Explanation from MSDN: XmlHttp provides a protocol for the client to communicate with the http server. The client can send requests to the http server through the XmlHttp object (MSXML2.XMLHTTP.3.0) and use the Microsoft XML Document Object Model Microsoft® XML Document Object Model (DOM) handles responses.
Most of the current browsers have added support for XmlHttp. IE uses ActiveXObject to create XmlHttp objects. Other browsers such as Firefox and Opera use window.XMLHttpRequest to create xmlhttp objects.