XML ファイルを使用する簡単なコードを作成しました。.xml で終わるリンクを使用すると、正しく機能します。しかし、 http://www.tbl.org.tr/xml.asp?Lig=Beko&Eylem=PD&sezon=2013-2014でリンクを変更すると、何も表示されません。
私のコードは以下です。
どうすればこの問題を解決できますか?
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body>
<script>
if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
} else {// code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET", "http://www.tbl.org.tr/xml.asp?Lig=Beko&Eylem=PD&sezon=2013-2014", false);
xmlhttp.send();
xmlDoc = xmlhttp.responseXML;
document.write("<table width='350' cellpadding='5'>");
var x = xmlDoc.getElementsByTagName("Siralama");
document.write("<tr><td width='20'>");
document.write("Sıra");
document.write("</td><td width='290'>");
document.write("Takım");
document.write("</td><td width='20'>");
document.write("O");
document.write("</td><td width='20'>");
document.write("G");
for ( i = 0; i < 8; i++) {
document.write("<tr><td width='20'>");
document.write(x[i].getAttribute('Sira'));
document.write("</td><td width='290'>");
var y = x[i].getAttribute('Takim');
if (y.length == 15)
document.write("<font color=red><b>" + x[i].getAttribute('Takim') + "</b></font>");
else
document.write(x[i].getAttribute('Takim'));
document.write("</td><td width='20'>");
document.write(x[i].getAttribute('O'));
document.write("</td><td width='20'>");
document.write(x[i].getAttribute('G'));
document.write("</td></tr>");
}
document.write("</table>");
</script>
</body>