1 function DOMComb(parent, callback) { 2 if (parent.hasChildNodes()) { 3 for (var node = parent.firstChild; node; node = node.nextSibling) { 4 DOMComb(node, callback); 5 } 6 } 7 callback(parent); 8 } 9 10 // 用法 11 DOMComb(document.body, console.log)
参数一:某节点
参数二:回调函数