0

XMLファイルは次のとおりです。

<SketchPad>
<Player>
    <TotalPage>2</TotalPage>
    <BackgroundImage>/Users/ltlab/Library/Application Support/iPhone Simulator/5.1/Applications/D84490FE-3450-456C-A8FE-16BE8B1EB12C/Documents/publicUser_1356864779.441782_local.png</BackgroundImage>
    <Name>1</Name>
    <SelfBackgroundImage>sound.png</SelfBackgroundImage>
    <Type>Record</Type>
    <X_Value>0.000000</X_Value>
    <Y_Value>38.000000</Y_Value>
    <Height_Value>50.000000</Height_Value>
    <Width_Value>50.000000</Width_Value>
    <File_Path>null</File_Path>
</Player>
<Player>
    <TotalPage>2</TotalPage>
    <BackgroundImage>/Users/ltlab/Library/Application Support/iPhone Simulator/5.1/Applications/D84490FE-3450-456C-A8FE-16BE8B1EB12C/Documents/publicUser_1356864779.441782_local.png</BackgroundImage>
    <Name>1</Name>
    <SelfBackgroundImage>8_128x128.png</SelfBackgroundImage>
    <Type>Stamp</Type>
    <X_Value>7.000000</X_Value>
    <Y_Value>716.000000</Y_Value>
    <Height_Value>80.000000</Height_Value>
    <Width_Value>80.000000</Width_Value>
    <File_Path>null</File_Path>
</Player>
<Player>
    <TotalPage>2</TotalPage>
    <BackgroundImage>/Users/ltlab/Library/Application Support/iPhone Simulator/5.1/Applications/D84490FE-3450-456C-A8FE-16BE8B1EB12C/Documents/publicUser_1356864779.441782_local.png</BackgroundImage>
    <Name>1</Name>
    <SelfBackgroundImage>duck.png</SelfBackgroundImage>
    <Type>Stamp</Type>
    <X_Value>570.000000</X_Value>
    <Y_Value>715.000000</Y_Value>
    <Height_Value>80.000000</Height_Value>
    <Width_Value>80.000000</Width_Value>
    <File_Path>null</File_Path>
</Player>
</SketchPad>


私がやりたいのは、タグ内のすべてのデータを収集することです。

$(xml).find("X_Value").toArray();

ただし、次のようなタグを含む配列を返します。

[<x_value>0.0000000<x_value>,<x_value>7.0000000<x_value>,<x_value>570.0000000<x_value>]

予期された配列ではありません: [0.0000000,7.0000000,570.0000000]

タグ内の値を直接抽出して配列を作成するにはどうすればよいですか?

を操作する方法がよくわかりませんjQuery.map()

4

1 に答える 1

3

代わりにこれを使用してください...

$(xml).find("X_Value").map(function() { return $(this).text(); }).get();

前の例では、これらの要素への参照を取得しています。これにより、参照が内部テキストに置き換えられます。

于 2013-01-08T04:03:54.590 に答える