我们的志愿者还没有将这篇文章翻译为 中文 (简体)。加入我们帮助完成翻译!
AJAX (Asynchronous JavaScript And XML) is a programming practice of combining HTML, CSS, JavaScript, the DOM, and the XMLHttpRequest
object to build more complex webpages. What AJAX allows you to do is just update parts of a webpage instead of having to reload the entire page. AJAX also lets you work asynchronously, meaning your code continues to run while that part of your webpage is trying to reload (compared to synchronously which will block your code from running until that part of your webpage is done reloading).
Learn more
General knowledge
- AJAX on Wikipedia
- Synchronous vs. Asynchronous Communications
Technical information
- The
XMLHttpRequest
object. - The AJAX documentation on MDN