私はXML、Javascriptを練習しています。各動物の画像を一列に並べて表示したい。しかし、私の主な問題は、イメージの不均一な入れ子になります。 IMGのためXMLからhtmlに画像を表示する方法
<zoo>
<animal>
<common_name>Elephant</common_name>
<images>
<image>elephant13.jpg</image>
</images>
</animal>
<animal>
<common_name>Emu</common_name>
<images>
<image>emu12.jpg</image>
<image>emu26.jpg</image>
<image>emu23.jpg</image>
</images>
</animal>
<animal>
<common_name>Lion</common_name>
<images>
<image>lion51.jpg</image>
<image>lion46.jpg</image>
</images>
</animal>
<zoo>`
私のjavascriptは次のとおりです:
for(var y = 0; y < noOfImages ; y++)
{
if (images)
{
images.src ="images/" + zooRoot.getElementsByTagName("image")[i].firstChild.nodeValue;
ul.appendChild(images);
}
}
私たちのためのフィドルをm akeコードが変更されます。 –
xmlファイル –
を追加できません。そうねぇ。お待ちください –