How to get all childNodes in JS including all the 'grandchildren'?

前端 未结 3 806
南旧
南旧 2021-02-04 23:14

I want to scan a div for all childNodes including the ones that are nestled within other elements. Right now I have this:

var t = document.getElementById(\'DivId         


        
3条回答
  •  误落风尘
    2021-02-04 23:56

    If you're looking for all HTMLElement on modern browsers you can use:

    myDiv.querySelectorAll("*")
    

提交回复
热议问题