使用cheerio选择嵌套节点

时间:2019-02-01 20:00:17

标签: node.js xml cheerio

更新:我知道了。请参阅下面的答案

我有一个类似的xml,我想选择a[type="foo"] d。我正在使用cheerio。我已经到达d = $('a[type=foo]'),但此后迷路了。

<a type="foo">
    <b>
        <c>
            <d blah="fop" bung="frum">
                <e>Lorem Dramam</e>
            </d>
            <f>sp. cr.</f>
        </c>
    </b>
    <b box="[4,7,18,22]" from="31" to="32">
        urn:foo:bar:baz
        <g box="[2,9,10,12]" code="AC" from="31" to="32">AC</g>
        crummy 
        <h box="[7,12,22,30]" country="Nigeria">A</h>
        winter
    </b>
</a>

答案: const d = $('a[type=foo] d')做这项工作

1 个答案:

答案 0 :(得分:0)

遵循jQuery选择范例,const d = $('a[type=foo] d')完成了工作