Example of how to obtain the document Node object

Source: Internet
Author: User

Example of how to obtain the document Node object

If you want to operate on an element, you must first obtain it. The following describes how to obtain the object of the document node. Do not miss it if you are interested.

The Code is as follows:

<Html>

<Head>

<Title> </title>

<Script>

 

/*

How to obtain the document Node object:

 

*/

// First, get it by id

Function documentDemo (){

Var tableNode = document. getElementById ("tab_id ");

TableNode. style. border = "5px solid #00ff00 ";

}

// The second type, using the name attribute

Function documentDemo2 (){

Var inputNode = document. getElementsByName ("txt ");

Alert (inputNode. length );

Alert (inputNode [0]. value );

 

}

// The third type is the tag name.

Function documentDemo3 (){

Var tdNode = document. getElementsByTagName ("td ");

Alert (tdNode. length );

For (var x = 0; x <tdNode. length; x ++ ){

Alert (tdNode [x]. innerText );

}

}

</Script>

 

<Style type = "text/css">

. Onediv {

Width: 200px;

Height: 100px;

Border: 1px solid # f00;

Margin-top: 20px;

}

 

Table, td {

Border: 1px solid # 00f;

Width: 200px;

Margin-top: 20px;

Text-align: center;

}

</Style>

 

</Head>

 

<Body>

<Input type = "button" value = "document Object demonstration" onclick = "documentDemo3 ()"> <br/>

<Div class = "onediv">

This is the content in the div.

</Div>

 

<Input type = "txt" name = "txt">

<Input type = "txt" name = "txt">

 

 

<Table cellspacing = "0" id = "tab_id">

<Tr>

<Td> java </td>

<Td> php </td>

</Tr>

<Tr>

<Td>. net </td>

<Td> ios </td>

</Tr>

</Table>

 

<Span> This is a span area </span> <br/>

<A href = "#"> This is a hyperlink </a>

<Body>

 

</Html>

 

Related Article

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.