当前位置: 首页 > 网络学院 > 客户端脚本教程 > AJAX > AJAX 介绍
AJAX stands for Asynchronous JavaScript And XML.
AJAX 是 “异步Javascript 和 XML” 。
Before you continue you should have a basic understanding of the following:
在你继续下面的学习之前,你需要对下述概念有一个基本的了解:
If you want to study these subjects first, find the tutorials on our Home page.
如果你希望学习更多关于上述主题的知识,你可以在我们的教程主页上查找。
AJAX is not a new programming language, but a technique for creating better, faster, and more interactive web applications.
AJAX 并不是一个全新的程序语言,但是,这些技术可以创建出更好、更快、更具交互性的Web应用程序。
With AJAX, your JavaScript can communicate directly with the server, using the JavaScript XMLHttpRequest object. With this object, your JavaScript can trade data with a web server, without reloading the page.
在AJAX中,通过使用“JavaScript XMLHttpRequest” 对象,你的 JavaScript 可以直接与服务器端进行交流;并且,通过使用该对象,你的 JavaScript 可以在不加载页面的情况下直接与服务器端进行数据交换。
AJAX uses asynchronous data transfer (HTTP requests) between the browser and the web server, allowing web pages to request small bits of information from the server instead of whole pages.
AJAX 在浏览器和Web服务器之间使用异步数据传输 (HTTP 请求)。它允许网页请求服务器端页面的一小部分信息而非整个页面。
The AJAX technique makes Internet applications smaller, faster and more user-friendly.
AJAX技术是整个互联网应用程序变得更小巧、更快捷、更具用户友好性。
AJAX is a browser technology independent of web server software.
AJAX 是一个独立于Web服务器软件的浏览器技术。
AJAX is based on the following web standards:
AJAX 是基于下述Web标准的:
The web standards used in AJAX are well defined, and supported by all major browsers. AJAX applications are browser and platform independent.
在AJAX中使用的Web标准被定义得非常精准,并且,主流浏览器都支持这项技术。AJAX应用程序是独立于流览器和操作平台的。
Web applications have many benefits over desktop applications; they can reach a larger audience, they are easier to install and support, and easier to develop.
Web 应用程序比桌面应用程序的优势更加明显;它们可以扩大受众面,易于安装;它们被大部分浏览器和操作平台支持,并且易于开发。
However, Internet applications are not always as "rich" and user-friendly as traditional desktop applications.
然而,互联网应用程序并不像想象的那样功能齐全,用户友好性也不像传统的桌面应用程序那么出色。
With AJAX, Internet applications can be made richer and more user-friendly.
但是,通过使用AJAX技术,互联网应用程序的功能可以变得更加齐全,并且更具用户友好性。
There is nothing new to learn.
并不需要学习更多新知识。
AJAX is based on existing standards. These standards have been used by most developers for several years.
AJAX是基于现存的标准的。这些标准已经被大多数开发者使用了数年之久。