0

我有这个 XML 文件名为payload.xml

<Remoting><Response>
<Controller id="c">
<Messages/>
<StructData name="Root">
    <F name="@ErrorOccured"/>
    <F name="@TransitionErrorOccurred"/>
    <List name="DataList" aspect="Delete"/>
    <List name="DataList" aspect="New">
        <Item name="001">
            <F name="CreationDateTime" >2012/04/26</F>
            <F name="ProductDescription" />
        </Item>
        <Item name="01F">
            <F name="CreationDateTime" >2012/08/09</F>
            <F name="ProductDescription" >Smartphone 16GB</F>
        </Item>                 
        <Header name="@tableSize">316 </Header>
    </List>
</StructData>
<Events>
    <Event event="$Core" operation="$AddRow" path="/Root/DataList"/>
</Events>
</Controller>
</Response></Remoting>

我需要从中提取这个 XML:

<Item name="001">
    <F name="CreationDateTime" >2012/04/26</F>
    <F name="ProductDescription" />
</Item>
<Item name="01F">
    <F name="CreationDateTime" >2012/08/09</F>
    <F name="ProductDescription" >Smartphone 16GB</F>
</Item> 

我的第一步是:

jQuery.get("payload.xml", function(result){ 
    obj = $(result).find('Response').find('Controller').find('StructData');})

当我检查调试器内部时,我看不到任何 XML 内部obj

4

2 回答 2

0

尝试小写您的标签。

jQuery.get("payload.xml", function(result){ 
    obj = $(result).find('response').find('controller').find('structdata');})

如果这不起作用,试试这个

于 2012-10-04T00:52:04.603 回答
0
$('Item', result).each(function(){
    $('F',this).text()
});
于 2012-10-04T00:53:11.483 回答