I m试图利用网络服务进行分类,并在从美国机场开放Xml服务。
http://services.faa.gov/airport/status/IAD?format=application/xml”rel=“nofollow” http://services.faa.gov/airport/status/IAD?format=application/xml
和我的《金字典》如下,但当页装上时,显示一个空洞的屏幕:有人可以指导我。 我在网上搜索了数据。
<html>
<head>
<script type="text/javascript" src="assets/jquery.js"></script>
<title>Aviation</title>
<script type="text/javascript">
$(document).ready(function () {
$.ajax({
type: "GET",
url: "http://services.faa.gov/airport/status/IAD?format=application/xml",
dataType: "xml",
success: xmlParser
});
});
function xmlParser(xml) {
$( #airport ).fadeOut();
$(xml).find("AirportStatus").each(function () {
$("#details").append($(this).find("ICAO").text() + "</br>"+ $(this).find("State").text());
//$(".book").fadeIn(1000);
});
}
</script>
</head>
<body>
<p id="airport">Loading...</p>
<p id="details"></p>
</body>
</html>
提前感谢您。