With IE(The way of creating the object depend on the web browser), the request looks like:
http = new XMLHttpRequest();
Then an event handler which will be called via some event on user's page need to be written and it will handle sending the request for data to the server.
In the following example event handler called updateData ,a request of the server is made by using a GET method to an appropriate server-side script.A XMLHTTPRequest object has created and called it http:
function updateData(param) {
var myurl = [here I insert the URL to my server script];
http.open("GET", myurl , true); //This is to open the connection with the server.
http.send(null);
http.open method: The Http request of the XMLHttpRequest object initialize through the open method. This method invoke prior to the actual sending of a request to validate the request method and URI user information to be used for the request. This method does not assure that the URL exists or the user information is correct.
The first parameter of the method is a string indicating the HTTP request method to use. It can be either a GET,POST,PUT,DELETE or HEAD.The second parameter of the method is another string, this one indicating the URL of the HTTP request.
The third parameter, a boolean value indicating whether or not the request will be asynchronousAn asynchronous request ("true") will not wait on a server response before continuing on with the execution of the current script. It will instead invoke the onreadystatechange evnt listner of the XMLHttpRequest object throughout the various stages of the request.
Comments
Post a Comment