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>showCD() 函數會執行以下步驟:檢查是否有CD 被選擇創建XMLHttpRequest 物件建立在伺服器回應就緒時執行的函數向伺服器上的檔案傳送請求請注意新增至URL 末端的參數(q)(包含下拉清單的內容)PHP 檔案上面這段透過
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>"); }}?>當CD 查詢從JavaScript 發送到PHP 頁面時,將發生:PHP 建立XML DOM 物件找到所有cbb6a5431263fa60a8770e5fc7758c8f 元素中與JavaScript 所傳資料相符的名稱輸出album的訊息,並發送回"txtHint" 佔位符這篇詳細的講解了 AJAX 與XML的交互,更多的學習資料清關注php中文網即可觀看。 相關推薦:
以上是關於PHP 實例 - AJAX 與 XML的交互的詳細內容。更多資訊請關注PHP中文網其他相關文章!