AJAX 可用於與 XML 檔案進行互動式通信,本篇將會詳細的解說AJAX 與 XML之間的交互。
AJAX XML 實例
下面的實例將示範網頁如何透過AJAX 從XML 檔案讀取資訊:
實例
Select a CD: Bob Dylan Bee Gees Cat Stevens
CD info will be listed here...
##實例解釋- HTML 頁面當使用者在上面的下拉清單中選擇某張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>
JavaScript 呼叫的伺服器頁面是名為"getcd.php" 的PHP 檔案。
PHP 腳本載入XML 文檔,"cd_catalog.xml",執行針對XML 文件的<?php $q=$_GET["q"];$xmlDoc = new DOMDocument();$xmlDoc->load("cd_catalog.xml");$x=$xmlDoc->getElementsByTagName('ARTIST');for ($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>"); }}?>
以上是關於PHP 實例 - AJAX 與 XML的交互的詳細內容。更多資訊請關注PHP中文網其他相關文章!