0

私が必要とする最終結果は、すべてのテキストノードに同じインデントを持たせることです。@name フィールドは一定サイズではありません。Parentnode には、受け取った順序で解析する必要があるさまざまな数の子があります。possibleothernodes は、すべての場合で明示的に順序付けされているわけではありません。

XML:

<parentnode>
  <possibleothernodes1...n/>
  <node name="SomeBoldText">
   <text>Text1</text>
  </node>
  <node>
   <text>Text2</text>
  </node>
  <node>
   <text>Text3</text>
  </node>
  <node>
   <text>Text4</text>
  </node>
  <possibleothernodes2...n/>
</parentnode>

結果のHTMLが次のようになる必要があります

possibleothernodes1
SomeBoldText: Text1
              Text2
              Text3
              Text4
possibleothernodes2

私の本当の目標は、Text1、Text2、Text3、Text4 を 1 つの div タグにグループ化し、@name を別の div タグにグループ化する方法です。2 つの div を使用すると、それらを必要な場所にフロートさせることができます。

4

2 に答える 2