使用get和parse xml发送信息

时间:2013-11-02 21:26:30

标签: javascript html xml xml-parsing get

我写了一个简单的代码来使用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>

1 个答案:

答案 0 :(得分:0)

由于我没有足够的声誉发表评论,我必须回答这个问题。 您的问题很可能是由“Access-Control-Allow-Origin”引起的。 charlietfl说的话在我看来是真的。我只想补充一点,您可能会考虑使用除document.write之外的其他内容作为document.write允许您加载XML的网站来操作您的网站并注入自定义脚本。您应该解析代码并创建DOM元素,而不是将它们写入文档。