Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะรับ innerHTML ของเซลล์ด้วย JavaScript DOM ได้อย่างไร


ใช้คุณสมบัติ innerHTML ใน JavaScript เพื่อรับ innerHTML ของเซลล์ คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อรับ innerHTML ของเซลล์ใน JavaScript -

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <script>
         function cellFunc(x) {      
            var cell = document.getElementById(x).rows[0].cells;      
            document.write(cell[0].innerHTML);
         }
      </script>
   </head>
   <body>  
      <table style="border:2px solid black" id="newtable">
         <tr>
            <td>One</td>
            <td>Two</td>
         </tr>
         <tr>
            <td>Three</td>
            <td>Four</td>
         </tr>
         <tr>
            <td>Five</td>
            <td>Six</td>
         </tr>
      </table>  
      <p>
         <input type="button" onclick="cellFunc('newtable')" value="Display Table Cell">
      </p>  
   </body>
</html>