gpt4 book ai didi

javascript - 根据 xml 解析返回的数据编写条件

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

有人可以帮我理解如何写这个吗?

如果我从 xml 文件解析数据,例如:

function  parseXml(xml) {
$(xml).find("ITEM").each(function()
{
var foo= $("bar", this).text();
$("#container").append('<div>' + (foo) + '</div>');
});
}

我该如何编写像 if foo = hello then return goodbye 这样的语句并获得该输出,但否则只返回 foo?

最佳答案

好的..试试这个。

function  parseXml(xml) {
$(xml).find("ITEM").each(function()
{
var foo = $("bar", this).text();
if(foo == "hello"){ foo = "goodbye" }
$("#container").append('<div>' + foo + '</div>');
});
}

关于javascript - 根据 xml 解析返回的数据编写条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5585302/

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