gpt4 book ai didi

javascript - 如何循环遍历 javascript 中的 XML 节点?

转载 作者:行者123 更新时间:2023-11-30 11:14:10 25 4
gpt4 key购买 nike

<分区>

我尝试使用 js 从 XML 循环列表项。但列表数据不与项目符号点重复。

这是我的代码。

数据.xml

<?xml version="1.0"?>
<paintings>
<cd>
<para>posuere lacus in, accumsan nulla.</para>
<list>Cras dolor dui hendrerit eget eleifend eu</list>
<list>Cras dolor dui hendrerit eget eleifend eu</list>
<list>Cras dolor dui hendrerit eget eleifend eu</list>
</cd>
</paintings>

脚本.js

 $(document).ready(function(){
$.ajax({
type:"GET",
url:"data.xml",
dataType:"xml",
success:xmlParser
});
});

function xmlParser(xml){
xml = $(xml).children();
$(xml).children().each(function () {

let para = '<div>' + $(this).find("para").text() + '</div>';
let list = '<div>' + $(this).find("list").text() + '</div>';

let html = `
<p>${para}</p>
<ul><li>${list}</li></ul>
`;
$("#xmldata").append(html);

});
}

html

<div class="row" id="xmldata"></div>

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com