4

我有一个 XML 文件:

    <?xml version="1.0" encoding="ISO-8859-1"?>
<childrens>
 <child id="1" value="Root Catalog" parent_id="0">
  <child id="2" value="Apparel" parent_id="1">
    <child id="3" value="Accessories" parent_id="2">
        <child id="4" value="Handbags" parent_id="3">
            <child id="5" value="Jewelry" parent_id="4"/>
            <child id="6" value="test1" parent_id="4"/>
            <child id="7" value="test2" parent_id="4"/>
            <child id="15" value="test3" parent_id="4"/>
        </child>
    </child>
  </child>
  <child id="8" value="test_A" parent_id="1">
    <child id="9" value="test_B" parent_id="8">
        <child id="10" value="test_C" parent_id="9">
            <child id="11" value="test_D" parent_id="10"/>
        </child>
    </child>
  </child>
  .
  .
  .
  .
  .
  .
  <child id="1111" value="test" parent_id="1">
    <child id="1112" value="test1" parent_id="1111">
        <child id="1113" value="test12" parent_id="1112">
            <child id="1114" value="test123" parent_id="1113"/>
            <child id="1115" value="test1234" parent_id="1114"/>
        </child>
    </child>
    <child id="1116" value="test12345" parent_id="1111"/>
  </child>  
 </child>
</childrens>

我想找到特定节点的所有后代(所有子节点直到叶节点)。例如,这里test的后代是test1,test12,test123,test1234 & test12345

如果我找到 的后代test1,那么结果将是test12,test123,test1234

$(document).ready(function(){
$.ajax({
    type: "GET",
    url: "test.xml",
    dataType: "xml",
    success: function(xml) {
        $(xml).find('child[value="test"]').children().each(function(){
            var i = $(this).attr('value');
            alert(i);

        });
    }
});
});

jQuery 的使用.children()只给了我该节点的直接子节点。它不会给它的孙子孙女。例如,因为test它只会发出警报test1 & test12345

4

2 回答 2

1

您可以通过进行预购遍历来实现它。它是一个递归函数,它将按照您想要的顺序处理节点。请参阅如何在 jQuery 中编写简单的前序 DOM 树遍历算法?

考虑到@k-prime 答案,您的示例将是:

$(xml).find('child[value="test"]').children().each (function processNodes()
{
    alert($(this).attr('value'));
    if (this.nodeType != 3)
        $(this).children().each(processNodes);
});

提琴手

作为一个单独的函数:

function recursiveDescendantsValues(node, arr) {
    node.children().each(function () {
        arr.push($(this).attr('value'));
        if ($(this).nodeType != 3) {
            recursiveDescendantsValues($(this), arr);
        }
    });
}
jQuery.fn.descendantsValues = function() {
    var arr = []
    recursiveDescendantsValues($(this), arr);
    return arr;
};

提琴手

希望能帮助到你!

于 2013-02-02T10:05:15.633 回答
0

以更外行和原始的方式,您可以这样做:

    function iterative_logger(root, t) {
        if (t > 0) console.log(root.attr('value'));
        //console.log("Traversing : " + root.attr('value')+"\n");
        var root_children = $(root).children();
        //console.log("Found " + root_children.length + " children\n");
        if (root_children.length > 0)
            root_children.each(function () {
                t++;
                //console.log("\t" + $(this).attr('value'));
                iterative_logger($(this), t);
            });
    }
    $(document).ready(function () {
        $.ajax({
            type: "GET",
            url: "test.xml",
            dataType: "xml",
            success: function (xml) {
                iterative_logger($(xml).find('child[value="test"]'), 0);
            }
        });
    });

这递归地计算给定节点“根”的所有后代节点。

于 2013-02-02T12:13:26.927 回答