我想从远程网站http://services.faa.gov/airport/status/IAD?format=xml解析 xml 数据...但我无法解析 xml 数据,我只得到错误. 但我能够解析来自同一个远程网站http://services.faa.gov/airport/status/IAD?format=json的 JSON 数据。我用来解析 xml 数据的代码是:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Aviation</title>
<script type="text/javascript" src="Scripts/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
var result;
function xmlparser() {
$.ajax({
type: "GET",
url: "http://services.faa.gov/airport/status/IAD?format=xml",
dataType: "xml",
success: function (xml) {
result = xml.city;
document.myform.result1.value = result;
},
error: function (xml) {
alert(xml.status + ' ' + xml.statusText);
}
});
}
</script>
</head>
<body>
<p id="details"></p>
<form name="myform">
<input type="button" name="clickme" value="Click here to show the city name" onclick=xmlparser() />
<input type="text" name="result1" readonly="true"/>
</form>
</body>
</html>
自从我打印了错误消息以来,我只在警报框中收到错误消息“o Error”。请任何人帮忙解析来自远程网站的 xml 数据。 注意:我也有“城市”而不是“城市”,但它不起作用......在此先感谢......