84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
Comment trouver la profondeur maximale de l'arborescence DOM en utilisant du js natif ?
J'ai utilisé l'attribut children du nœud dom pour parcourir et récurser
La routine récursive est : 返回 (1 + 子节点们深度的最大值)
返回 (1 + 子节点们深度的最大值)
// map(e => e + 1)([0, 1, 2]) // => 1, 2, 3 // 类似于数组的map方法 不过这里柯里化了 var map = cb => arr => Array.prototype.map.call(arr, cb); // 取数组最大值 // max([0, 1, 2]) // => 2 var max = arr => arr.reduce((acc, cur) => { if (cur >= acc) return cur; else return acc; }, arr[0]); // 递归函数 var nextChildren = node => { // 基准条件 if (node.children.length === 0) return 1; else { // 求子节点们的长度 并取最大值 var deeps = map(nextChildren)(node.children); return 1 + max(deeps); } } // 计算 var $body = document.getElementsByTagName('body')[0]; var deep = nextChildren($body); console.log(deep);
Implémentation récursive
J'ai utilisé l'attribut children du nœud dom pour parcourir et récurser
La routine récursive est :
返回 (1 + 子节点们深度的最大值)
Capture d'écran