Created
September 19, 2019 10:42
-
-
Save Manyaka/82159aebf7d3313f81cbccb6274f02fd to your computer and use it in GitHub Desktop.
Простенькая имитация ДОМ дерева
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let html = document.children[0]; | |
for (let i = 0; i < html.children.length; i++) { | |
let child = html.children[i]; | |
console.log(child.tagName.toLowerCase()); | |
for (let j = 0; j < child.children.length; j++) { | |
let innerChild = child.children[j]; | |
console.log('|---' + innerChild.tagName.toLowerCase()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment