Software: Apache. PHP/5.5.15 uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 SYSTEM Safe-mode: OFF (not secure) E:\xampp\xampp\htdocs\phpold\AjaxPhpCode\Chapter07\ajax\svg_chart\ drwxrwxrwx |
Viewing file: ajaxRequest.js (2.48 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) | // will store reference to the XMLHttpRequest object var xmlHttp = null; // creates an XMLHttpRequest instance function createXmlHttpRequestObject() { // will store the reference to the XMLHttpRequest object var xmlHttp; // this should work for all browsers except IE6 and older try { // try to create XMLHttpRequest object xmlHttp = new XMLHttpRequest(); } catch(e) { // assume IE6 or older var XmlHttpVersions = new Array("MSXML2.XMLHTTP.6.0", "MSXML2.XMLHTTP.5.0", "MSXML2.XMLHTTP.4.0", "MSXML2.XMLHTTP.3.0", "MSXML2.XMLHTTP", "Microsoft.XMLHTTP"); // try every prog id until one works for (var i=0; i<XmlHttpVersions.length && !xmlHttp; i++) { try { // try to create XMLHttpRequest object xmlHttp = new ActiveXObject(XmlHttpVersions[i]); } catch (e) {} } } // return the created object or display an error message if (!xmlHttp) alert("Error creating the XMLHttpRequest object."); else return xmlHttp; } // initiates an AJAX request function ajaxRequest(url, callback) { // stores a reference to the function to be called when the response // from the server is received var innerCallback = callback; // create XMLHttpRequest object when this method is first called if (!xmlHttp) xmlHttp = createXmlHttpRequestObject(); // if the connection is clear, initiate new server request if (xmlHttp && (xmlHttp.readyState == 4 || xmlHttp.readyState == 0)) { xmlHttp.onreadystatechange = handleGettingResults; xmlHttp.open("GET", url, true); xmlHttp.send(null); } else // if the connection is busy, retry after 1 second setTimeout("ajaxRequest(url,callback)", 1000); // called when the state of the request changes function handleGettingResults() { // move forward only if the transaction has completed if (xmlHttp.readyState == 4) { // a HTTP status of 200 indicates the transaction completed // successfully if (xmlHttp.status == 200) { // execute the callback function, passing the server response innerCallback(xmlHttp.responseText) } else { // display error message alert("Couldn't connect to server"); } } } } |
:: Command execute :: | |
--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0936 ]-- |