AJAX 可用於與XML 檔案進行互動式通訊。
下面的實例將示範網頁如何透過AJAX 從XML 檔案讀取資訊:
當使用者在上面的下拉清單中選擇某張CD 時,會執行名為"showCD()" 的函數。此函數由"onchange" 事件觸發:
<html><head><script>function showCD(str){ if (str=="") { document.getElementById("txtHint").innerHTML=""; return; } if (window.XMLHttpRequest) { // IE7+, Firefox, Chrome, Opera, Safari 瀏覽器執行xmlhttp=new XMLHttpRequest(); } else { // IE6, IE5 瀏覽器執行xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("txtHint") .innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","getcd.php?q="+str,true); xmlhttp.send();}</script></head><body><form>Select a CD:<select name ="cds" onchange="showCD(this.value)"><option value="">Select a CD:</option><option value="Bob Dylan">Bob Dylan</option><option value="Bonnie Tyler">Bonnie Tyler</option><option value="Dolly Parton">Dolly Parton</option></select></form><div id="txtHint"><b>CD info will be listed here...</b></div></body></html>
showCD() 函數會執行下列步驟:
檢查是否有CD 選擇
建立XMLHttpRequest 對象
建立在伺服器回應就緒時執行的函數
向伺服器上的文件發送請求
請注意新增到URL 末端的參數(q)(包含下拉清單的內容)
上面這段透過JavaScript 呼叫的伺服器頁面是名為"getcd.php" 的PHP 檔案。
PHP 腳本載入XML 文檔,"cd_catalog.xml",執行針對XML 文件的查詢,並以HTML 傳回結果:
<?php$q=$_GET["q"];$xmlDoc = new DOMDocument();$xmlDoc->load("cd_catalog.xml");$x=$xmlDoc->getElementsByTagName('ARTIST');forfor ($i=0; $i<=$x->length-1; $i++){ // 處理元素節點if ($x->item($i)->nodeType==1) { if ($x->item($i)->childNodes->item(0)->nodeValue == $q) { $y= ($x->item($i)->parentNode); } }}$cd=($y->childNodes);for ($i=0;$i<$cd->length;$i++){ / /處理元素節點if ($cd->item($i)->nodeType==1) { echo("<b>" . $cd->item($i)->nodeName . ":</b> " ); echo($cd->item($i)->childNodes->item(0)->nodeValue); echo("<br>"); }}?>
當CD 查詢從JavaScript 傳送到PHP 頁面時,將會發生:
PHP 建立XML DOM 對象
在所有<artist> 元素中尋找與JavaScript 所傳資料相符的名字
輸出album 的訊息,並傳回"txtHint" 佔位符