The ???A??? in Ajax
stands for ???asynchronous???, which means that the XMLHttpRequest
object's send() method returns immediately, letting the browser
processing of other HTML/JavaScript on the Web page continue while the
server processes the HTTP request and sends the response. While
asynchronous requests are the default, the reader can optionally send
synchronous requests, which halt other Web page processing until the page
receives the server's response.
Microsoft introduced the XMLHttpRequest object as an ActiveX
object in Internet Explorer (IE) 5. Other browser manufacturers,
recognizing the object's utility, implemented the XMLHttpRequest
object in their browsers, but as a native JavaScript object rather than as an
ActiveX object. In turn, recognizing the value and security in that
implementation type, Microsoft has recast the XMLHttpRequest in IE
7 as a window object property. Even when the implementation (and thus
invocation) details differ, all the browsers' implementations have similar
functionality and essentially identical methods. The W3C is working to
standardize the XMLHttpRequest object, releasing a working draft of
the W3C specification1.
This chapter discusses the XMLHttpRequest object API in detail,
listing and explaining all the properties and methods.
1.3 XMLHttpRequest Object Properties
The XMLHttpRequest object exposes various properties, methods, and
events so Ajax scripts can process and control HTTP requests and
responses.
Pages:
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29