zoukankan      html  css  js  c++  java
  • Javascript – Traversing the HTML DOM recursively « blog.swapnilsarwe.com

    Javascript – Traversing the HTML DOM recursively « blog.swapnilsarwe.com


    Javascript – Traversing the HTML DOM recursively

    by swapnilsarwe on November 25, 2011

    Javscript tutorial to learn basic HTML DOM methods and implement it to traverse the HTML element tree.

    This post will give idea about HTML DOM Objects and way we can use its methods and attributes to navigate or traverse through it.

    Introduction:
    How to traverse the complete HTML BODY covering each HTML element recursively and forming a tree You need to be aware of very basic Javscript DOM methods. W3schools is the wonderful resource to learn this basics. Go through all the functions but what we need for this exercise is getElementById() and getElementsByTagName()

    Eg: HTML

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    <html>
      <head>
        <title>
          Javascript - HTML Tree Parser
        </title>
      </head>
      <body>
        <div id="header">
          <h1>Javascript - HTML Tree Parser</h1>
        </div>
        <ul id="nav">
          <li><a href="one.html">one</a></li>
          <li><a href="two.html">two</a></li>
        </ul>
        <div id="footer">
        </div>
      </body>
    </html>

    Step I:
    We are going to write a javascript function – lets call it htmlTree

    1
    2
    3
    <script type="text/javascript">
       function htmlTree(){}
    </script>

    Step II:
    We will need to first get the body element, we can do it with the help of getElementsByTagName(‘body’), which will return you the body tag. But since the function itself is plural it will always return you an array even if it has only one single element. Since body is the present only once we will refer to the 0th element of an array.

    1
    2
    3
    4
    5
    <script type="text/javascript">
      function htmlTree(){    
        var body = document.getElementsByTagName('body')[0];  
      }
    </script>

    Step III:
    Now we will check if the body tag has any children – we can do that by using hasChildNodes() method, if yes then we will first refer to the first child, we can do that with the attribute “firstChild”. Also we can get the name of the tag with an attribute “tagName”. After reading the first child we will go to the next child, with use of an attribute “nextSibling”

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    <script type="text/javascript">
      function htmlTree(){    
        var body = document.getElementsByTagName('body')[0];    
        if (body.hasChildNodes()) {      
          var child = body.firstChild;      
          alert(child.tagName); // as per the above HTML example it will alert "div"      
          var next = child.nextSibling;      
          alert(next.tagName); // as per the above HTML example it will alert "ul"    
        }  
      }
    </script>

    But this wont meet our purpose, we dont know the length of the tree and we also dont know how deep each branch is going to be, so we will make this function recursive to perform these similar step for eavery branch till it reaches it leaves.

    Step IV:
    We will print the name of the tag identified and check if it has children if yes then we will recursively call the function again which will print its name and check if it has child – it will happen till it reaches element with no child

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    <script type="text/javascript">
      function htmlTree(obj){    
        var obj = obj || document.getElementsByTagName('body')[0];    
        alert(obj.tagName);    
        if (obj.hasChildNodes()) {      
          var child = obj.firstChild;      
          htmlTree(child);    
        }  
      }
    </script>

    When you execute this, you get first alert as BODY but very next alert as undefined – where in it should have been DIV. This is because between BODY and the DIV tag there is the white space which is considered to be an empty text – well we need to avoid such occurrences

    Step V:
    Go through nodeType on W3schools. Since here we are looking for an HTML elements, we will check for nodeType = 1. If it is 1 then we will recursively call the function if not we will move onto its sibling

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    <script type="text/javascript">
      function htmlTree(obj){    
        var obj = obj || document.getElementsByTagName('body')[0];    
        alert(obj.tagName);    
        if (obj.hasChildNodes()) {      
          var child = obj.firstChild;      
          while(child){        
            if (child.nodeType === 1) {          
              htmlTree(child);        
            }
            child = child.nextSibling;
          }
        }
      }
    </script>

    Step VI:
    These alerts are quiet annoying, so lets make some subtle changes so that this function returns us complete tree. I personally like “ul li ul li” to represent a tree. Here is the modified function

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    <script type="text/javascript">
      function htmlTree(obj){
        var obj = obj || document.getElementsByTagName('body')[0];
        var str = "<ul><li>" + obj.tagName;
        if (obj.hasChildNodes()) {
          var child = obj.firstChild;
          while (child) {
            if (child.nodeType === 1) {
              str += htmlTree(child)
            }
            child = child.nextSibling;
          }
        }
        str += "</li></ul>";
        return str;
      }
      document.write(htmlTree());
    </script>

    Step VII:
    Since at the very beginning we were talking about just HTML elements, we will get rid of all the javascript inside HTML. We can achieve that by simply adding a simple check in the condition where we check the nodeType.

    1
    2
    3
    4
    // Change
    if (child.nodeType === 1)
    // to
    if (child.nodeType === 1 && child.nodeName != 'SCRIPT')

    Demo:
    Javascript – HTML Tree Parser

  • 相关阅读:
    .NET Framework 精简版多线程提示
    创建全球化的 Windows Mobile 应用程序
    【转】Windows Mobile 进阶系列——多窗体应用的性能与编程调试1
    关于MOBILE注册表操作.
    windows下squid安装与配置
    关于Windows mobile注册表
    aaaaaaaaaaaaaa
    记GraphicsMagick压缩图片命令
    使用Sublime Text 2开发php
    SQL Server 2005中使用事务发布实现数据库复制
  • 原文地址:https://www.cnblogs.com/lexus/p/2821090.html
Copyright © 2011-2022 走看看