如何使用javascript访问特定节点下的xml节点?

时间:2014-07-30 10:42:07

标签: javascript jquery xml

<testimonials>
<testimonial id="4c050652f0c3e">
    <nimi>John</nimi>
    <email>test@test.com</email>
    <text>Some text</text>
    <active>1</active>
    </testimonial>
<testimonial id="4c05085e1cd4f">
    <name>ats</name>
    <email>some@test.ee</email>
    <text>Great site!</text>
    <active>0</akctive>
</testimonial>   </testimonials>

嗨,我试图使用Javascript访问xml节点。任何人都可以解释我如何访问证词下的所有节点(“id ='4c050652f0c3e'”)。

谢谢。

1 个答案:

答案 0 :(得分:0)

在jquery

中使用 attribute 选择器
$("[category=cooking]").children().each(function(){
alert($(this).text());
});

DEMO

然后你必须使用直接id

 $("#4c050652f0c3e").children().each(function () {
    alert($(this).text());
});