在 JavaScript 函数中返回 DOM
我正在尝试编写一个 javascript 函数来解析 DOM 树的一部分并返回其中的一部分以进一步解析。尽管单步执行似乎工作正常的函数,但该函数的返回对调用语句显示为未定义。有办法解决这个问题吗?
from = entityfromid($(value)[0].getElementsByTagName("O1")[0].childNodes[0].childNodes[0].nodeValue).getElementsByTagName("Name")[0].childNodes[0].nodeValue;
function entityfromid(id) {
$($(xmlDoc)[0].getElementsByTagName("Entities")[0].childNodes).each(function (index, value) {
if(value.getElementsByTagName('Id')[0].childNodes[0].nodeValue == id) {
return value;
}
});
}
I am trying to write a javascript function to parse a bit of the DOM tree and return a part of it to further parse. Despite stepping through the function which seems to be working fine, the return of the function shows as undefined to the calling statement. Is there a way to fix this?
from = entityfromid($(value)[0].getElementsByTagName("O1")[0].childNodes[0].childNodes[0].nodeValue).getElementsByTagName("Name")[0].childNodes[0].nodeValue;
function entityfromid(id) {
$($(xmlDoc)[0].getElementsByTagName("Entities")[0].childNodes).each(function (index, value) {
if(value.getElementsByTagName('Id')[0].childNodes[0].nodeValue == id) {
return value;
}
});
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要从
.each()
中取出return
语句,并从entityfromid
函数返回。在这里,当找到结果时,它将设置
ret_value
变量的值,并执行return false
,这会中断循环。然后,
ret_value
用于函数的返回
。You need to take the
return
statement out of the.each()
, and instead return from yourentityfromid
function.Here, when your result is found, it will set the value of the
ret_value
variable, and do areturn false
, which breaks the loop.Then the
ret_value
is used for thereturn
from your function.