如何使用 DOM 和 JS 从 XML 树结构中计算子树中的节点总数?

发布于 2024-12-17 10:52:35 字数 93 浏览 0 评论 0原文

对于给定节点,我需要找到子树节点的总数来设置该给定节点的权重属性。 我想知道如何使用 DOM 和 JS 从 XML 树结构中递归计算子树中的总节点数并设置该节点的权重属性?

For a given node I need to find the total number of sub tree node to set the weight property of that given node.
I am wondering how can we recursively count total nodes in sub tree from XML tree structure using DOM and JS and set the weight property of that node?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请止步禁区 2024-12-24 10:52:35
function countNodes(node) {
  var i = 0, c = node.childNodes.length, result = c;
  for (; i<c; i++) result += countNodes(node.childNodes[i]);
  // if you want: node.weight = result;
  return result;
} 
function countNodes(node) {
  var i = 0, c = node.childNodes.length, result = c;
  for (; i<c; i++) result += countNodes(node.childNodes[i]);
  // if you want: node.weight = result;
  return result;
} 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文