DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> 解析dom中的children對象數組元素firstChild,lastChild的使用
解析dom中的children對象數組元素firstChild,lastChild的使用
編輯:JavaScript綜合知識     
以下是對dom中的children對象數組元素firstChild,lastChild的使用進行了詳細的分析介紹,需要的朋友可以參考下   復制代碼 代碼如下:


<!--children對象數組元素示例 -->
<html>
<body>
  <table   id="tbl">  
  <tbody> <tr> <td> 行1列1 </td><td>行1列2 </td></tr>  
  <tr> <td> 行2列1 </td><td>行2列2 </td></tr>
  </tbody>
  </table>  
  <input   onclick="alert(document.all.tbl.children(0).children(0).innerHTML)"   value="children(0)"   type="button">  
  <input   onclick="alert(document.all.tbl.children(0).children(1).innerHTML)"   value="children(1)"   type="button">  
  <input   onclick="alert(document.all.tbl.children(0).children(1).children(0).innerHTML)"   value="children(2)"   type="button">
  <div   id=test>  
  <a></a>  
  <table></table>  
  </div>  

  <script>  
  alert(test.children[0].tagName)  
  alert(test.children[1].tagName)  
  </script>  

</body>
</html>

<!--在DOM中,整個頁面裡的元素是個樹型結構
children 代表對象的子節點數組-->

document.all.tbl.children(0).children(0).innerHTML解釋
document.all.tbl.children(0)定位到table的第一個子節點<tbody>
document.all.tbl.children(0).children(0) 定位到table的第一個子節點的第一個子節點<tr>,打印結果<td> 行1列1 </td><td>行1列2 </td>


document.all.tbl.children(0).children(1).innerHTML,打印結果<td> 行2列1 </td><td>行2列2 </td>


document.all.tbl.children(0).children(1).children(0).innerHTML 打印結果行2列2


<!--fistChild,lastChild示例-->
<html>
<body>
  <table   id="tbl">  
  <tbody> <tr id="tr1"> <td> 行1列1 </td><td>行1列2 </td></tr>  
  <tr> <td="tr2"> 行2列1 </td><td>行2列2 </td></tr>
  </tbody>
  </table>  
  <input   onclick="alert(document.all.tbl.firstChild.firstChild.innerHTML)"   value="children(0)"   type="button">  
  <input   onclick="alert(document.all.tbl.firstChild.lastChild.innerHTML)"   value="children(1)"   type="button">  
  <input   onclick="alert(document.all.tbl.firstChild.lastChild.firstChild.innerHTML)"   value="children(2)"   type="button">
  <div   id=test>  
  <a></a>  
  <table></table>  
  </div>  

  <script>  
  alert(test.firstChild.tagName)  
  alert(test.lastChild.tagName)  
  </script>  

</body>
</html>

document.all.tbl.firstChild定位到table的第一個子節點<tbody>
document.all.tbl.firstChild.firstChild定位到table的第一個子節點<tbody>
的第一個子節點<tr id="tr1">
document.all.tbl.firstChild.firstChild.innerHTML打印結果是<td> 行1列1 </td><td>行1列2 </td>


document.all.tbl.firstChild.lastChild定位到table的第一個子節點<tbody>
的最後子節點<tr id="tr2">
document.all.tbl.firstChild.lastChild.innerHTML打印結果是<td="tr2"> 行2列1 </td><td>行2列2 </td>


document.all.tbl.firstChild.lastChild.firstChild.innerHTML 打印結果是
行2列2

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved