如何在html上显示XML代码

时间:2016-07-06 13:14:21

标签: javascript html ajax xml

我有文件examle.xml:

Product
--Title
--Title
--Title

Product
--Title
--Title
--Title

我收到这个文件:

<tag> 
    <tag1>example</tag1>
</tag>

我希望在html上只显示xml树, 结果在HTML网站上:

var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
var response = xhr.responseXML;

0 个答案:

没有答案