本文介绍了从远程站点检索xml的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我在网站www.xyz.com/files/abc.html中有xml

我在该站点开发了另一个站点,我必须阅读xml文件


我正在使用此代码无法正常工作.

Hi

I am having xml in a site www.xyz.com/files/abc.html

i developed other site in that site i have to read the xml file


i am using this code not working .

<script type="text/javascript">
        var XmlHttp = null;
        if (window.XMLHttpRequest) {
            XmlHttp = new XMLHttpRequest();
            alert(1);
        }
        else // Internet Explorer 5/6
        {   alert(2);
            XmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
        }
        alert(3);
        XmlHttp.open("GET", "http://www.xyz.com/ab/books.xml", true);
        XmlHttp.send("");
        var xmlDoc = XmlHttp.responseXML;
       
        alert(1234);
    </script>   



问候



Regards

推荐答案


这篇关于从远程站点检索xml的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 03:00