JavaScript traverses the Element sample code in table

Source: Internet
Author: User

  This article mainly describes how JavaScript traverses the elements in a table, and the friends you need can refer to the following

     !--newszw_hzh_begin-->

For example:

 <tabl E id=tb> <tr><th> </th><th> </th><th> </th><th > </th></tr> <tr><td> </td><td> </td><td>  </td><td> </td></tr> <tr><td> </td><td>  </td><td> </td><td> </td></tr> </table> 

And in JS how to traverse assignment?
Program code

 var count=0 for (i=0, I < document.getElementById ("Tb1"). Rows.length; i++) {for (j=0; J < document.getElementById ("Tb1"). Rows (i)-cells.length;
    J + +) {document.all.getElementById ("tb1"). Rows (i). Cells (j). innertext = count;
  count++; } 

See another way to use DOM (but try not to try it out, for unknown reasons)

 <table id= "MyList" > <tr><td > A monk has water to drink. </td></tr> <tr><td> two monks fetch water and drink. </td></tr> <tr><td> three monks have no water to drink. </td></tr> </table> <script> var msg= "" Var mylist=document.getelementbyidx ("MyList") for (i=0 ; i<mylist.childnodes.length; i++) {var tr=mylist.childnodes[i]; for (j=0;j<tr.childnodes[j].length; J + +) {var td=tr.childnodes[j]; msg+=
Td.innertext;
} alert (msg); </script> 
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.