Learning outcome from AJAX
1. What is AJAX?
2. How is work AJAX in javascript?
Let do.......
Ajax stands for Asynchronous JavaScript And XML.
1. Ajax loads the data from the server
2. Updating the parts of a web page selectively without reloading the whole page
Here XML means-extensible markup language that means HTML.
Work AJAX:
built-in browser XMLHttpRequest (XHR) objects ---> send -> receive information to and from a web server asynchronously.
without blocking the page or interfering with the user's experience.
Ajax uses
1. XHTML for the content, CSS for designing
2. Document Object Model and JavaScript for dynamic content display
Note:
Examples of Ajax-driven online applications are Gmail, Google Maps, YouTube, Facebook, and so many others applications.
XMLHttpRequest (XHR) object: used to interact with servers
Basic Syntax: creating the object
wo types of methods open() and send().
req.send();
The two methods follow the parameters of the GET and POST methods.
The second parameter is " Handle the request"
The onreadystatechange stores a function (or the name of the function)to be called automatically each time the readyState property changes.
The readyState holds different values ranging from 0 to 4.
- request, not initialized-0
- server connection established-1
- request received-2
- processing request-3
- the request is finished and the response is ready-4
The total code is
Comments
Post a Comment