如何使用js获取xml标签的文本?

时间:2018-03-15 20:43:23

标签: javascript xml dom

<newsitem itemnum="1"> 
    <newsdate>6.18.3425</newsdate> 
    <title>End Of The Line For The Incumbent?</title> 
    <body> 
        The Universal News Network is reporting that <person>His 
        Magnificence The Supreme Leader For Life</person> 
        announced today that he has decided not to be cloned for 
        a 14th term. 
    </body>
</newsitem>

所以,在这里,我必须使用HTML中的js获取body标签内的所有文本。我能够通过使用xmlDoc.getElementsByTagName('person')[0].childNodes[0].nodeValue获取人物标签,获得“环球新闻网正在报道”部分,然后添加“他的宏伟生命最高领袖”。

我需要在循环中获取该数据,然后在表格中显示该数据,然后<body>在同一标记中出现多次不同的名为<program>的子标记。

0 个答案:

没有答案