Lynky: childNotes.length ?

Beitrag lesen

Hi,

kann mir jemand erklaeren, warum mir das folgende Script 3 Kindknoten von joblist zaehlt? Fuer mich ist da nur einer (, der wiederrum welche hat, ...). length zaehlt aber nicht etwa die ebenen, oder?

  
<script language="javascript">  
  
  function CountChilds() {  
    alert(document.getElementById('joblist').childNodes.length);  
    }  
  
</script>  
<table id="joblisttbl" cellpadding="3" cellspacing="0" onClick="CountChilds();">  
  <tbody id="joblist">  
  <tr>  
    <td class="lblueheadBotBord" width="120">  
   from - to  
    </td>  
    <td class="lblueheadBotBord" width="140">  
   company  
    </td>  
    <td class="lblueheadBotBord" width="120">  
   position  
    </td>  
    <td class="lblueheadBotBord" width="100">  
   actions  
    </td>  
  </tr>  
  </tbody>  
</table>  

Besten Dank im voraus,

Lynky