DOM Access Node Nodes instance Tutorial

Source: Internet
Author: User
Tags tag name

DOM Access Node Nodes instance Tutorial

Here you can access each node of the HTML file.


Access node
You can use a node in three aspects:

1. By using the getElementById () method

2. By using the getElementsByTagName () method

3. Through the nodes of the navigation tree, the relationship between nodes is utilized.


The getElementById () method
The getElementById () method returns the element with the specified number:

Grammar

document.getElementById ("Someid");
Note: the getElementById () method does not work with XML.

All content returned by the getElementsByTagName () method getElementsByTagName () and the specified tag name.

Grammar

document.getElementsByTagName ("P");

Now let's take a look at example two.

document.getElementById (' main '). getElementsByTagName ("P");

List of DOM nodes the getElementsByTagName () method returns a list of nodes.

A list of nodes is a series of nodes.

The following code store's list <p> node (node list) in the variable x:

X=document.getelementsbytagname ("P"); elements of <p> in X can be numbered by index

。 Enter second <p> you can write: y=x[1];

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.