Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
261 views
in Technique[技术] by (71.8m points)

javascript - How to search the children of a HTMLDivElement?

I have an HTMLDivElement, and my goal is to find a div nested beneath this.

Ideally I'd want something like getElementById, but that function doesn't work for HTMLDivElement.

Do I need to manually traverse the graph, or is there an easier way?

question from:https://stackoverflow.com/questions/8826385/how-to-search-the-children-of-a-htmldivelement

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Demo: http://jsfiddle.net/ThinkingStiff/y9K9Y/

If the <div> you're searching for has a class, you can use getElementsByClassName():

document.getElementById( 'parentDiv' ).getElementsByClassName( 'childDiv' )[0];

If it doesn't have a class you can use getElementsByTagName():

document.getElementById( 'parentDiv' ).getElementsByTagName( 'div' )[0];

And if it has an id you can, of course, just use getElementById() to find it no matter where it is in the DOM:

document.getElementById( 'childDiv' );

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...