AJAX控制DOM結點

來源:互聯網
上載者:User

 看過一篇文章,其中講到用AJAX來操作DOM結點,其實自己也不是很明白,他提供了源碼的一個執行個體,可弄下來怎麼都不對,研究了半天最後修改出個能用的,給大家看看,呵呵,很簡單,捕獲頭兩級HTML結點並刪除一個IMAGE結點.

 

<html>
 <head>
  <title>JavaScript and the DOM</title>
  <script language="JavaScript">...
   function test() ...{
    
    var myDocument = document;
    var htmlElement = myDocument.documentElement;
   
    alert("The root element of the page is " + htmlElement.nodeName);
   
    var headElement = htmlElement.getElementsByTagName("head")[0];
    if (headElement != null) ...{
      alert("We found the head element, named " + headElement.nodeName);

         
    
      var titleElement = headElement.getElementsByTagName("title")[0];
    
      if (titleElement != null) ...{
        
        var titleText = titleElement.firstChild;
        
        //alert("The page title is " + titleText.nodeName);
    
      }
  
      var bodyElement = headElement.nextSibling;
      while (bodyElement.nodeName.toLowerCase() != "body") ...{
        bodyElement = bodyElement.nextSibling;
      }   

      if (bodyElement.hasChildNodes()) ...{
        for (i=0; i<bodyElement.childNodes.length; i++) ...{
          var currentNode = bodyElement.childNodes[i];
          if (currentNode.nodeName.toLowerCase() == "img") 
      ...{
        
            bodyElement.removeChild(currentNode);
          }
        }
      }
    }
  }
  </script>
 </head>
 <body>
  <p>JavaScript and DOM are a perfect match. 
     You can read more in <i>Head Rush Ajax</i>.</p>
  <img src="http://www.headfirstlabs.com/Images/hraj_cover-150.jpg" />
  <input type="button" value="Test me!" onClick="test();" />
 </body>
</html>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.