用Ajax讀取XML格式的數據
以下是引用片段
<!DOCTYPE html PUBLIC
<html>
<head>
<title>Ajax Hello World</title>
<script type=
var xmlHttp;
function createXMLHttpRequest(){
if(window
xmlHttp = new ActiveXObject(
}
else if(window
xmlHttp = new XMLHttpRequest();
}
}
function startRequest(){
createXMLHttpRequest();
try{
xmlHttp
xmlHttp
xmlHttp
}catch(exception){
alert(
}
}
function handleStateChange(){
if(xmlHttp
if (xmlHttp
// 取得XML的DOM對象
var xmlDOM = xmlHttp
// 取得XML文檔的根
var root = xmlDOM
try
{
// 取得<info>結果
var info = root
// 顯示返回結果
alert(
}catch(exception)
{
}
}
}
}
</script>
</head>
<body>
<div>
<input type=
onclick=
</div>
</body>
</html>
><?xml version=
<root>
<info>hello world!</info>
</root>
From:http://tw.wingwit.com/Article/program/Web/201311/29853.html