網頁文章 網頁文章

<html>
<head>
<script type='text/javascript'>
function showTd(){
   var nodes = document.getElementsByTagName("td");
   for(var i = 0; i < nodes.length; i++) {
      var node = nodes[i];
      alert(node.childNodes[0].nodeValue);
    }
}
function showTitle(){
   document.getElementById("myTitle").innerHTML ="<h2>林志殷</h2>";
}
</script>
</head>
<body>
<input value="showTitle" onclick="showTitle();" type="button"><br>
<input value="showTDValues" onclick="showTd();" type="button"><br>

 


 

<div id="myTitle"></div>
<table>
  <tbody>
    <tr>
      <td>林</td>
      <td>志</td>
      <td>殷</td>
    </tr>
    <tr>
      <td>這</td>
      <td>麼</td>
      <td>帥</td>
    </tr>   
  </tbody>
</table>
</body>
</html>
 

網頁文章 網頁文章