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

จะกำหนดตำแหน่งของคำอธิบายตารางใน JavaScript ได้อย่างไร?


ในการกำหนดตำแหน่งของคำอธิบายตาราง ให้ใช้ JavaScript borderWidth คุณสมบัติ. กำหนดตำแหน่งโดยใช้คุณสมบัตินี้

คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อเรียนรู้วิธีกำหนดตำแหน่งของคำอธิบายภาพของตาราง -

ตัวอย่าง

<!DOCTYPE html>
<html>
   <body>
      <table id = "newTable" border = "2">
         <caption id = "newCaption">Employee Details</caption>
         <tr>
            <th>EmpID</th>
            <th>EmpName</th>
            <th>EmpDept</th>
         </tr>
         
         <tr>
            <td>001</td>
            <td>Amit</td>
            <td>IT</td>
         </tr>
         
         <tr>
            <td>002</td>
            <td>John</td>
            <td>Finance</td>
         </tr>
         
         <tr>
            <td>003</td>
            <td>David</td>
            <td>Marketing</td>
         </tr>
      </table>
      <br>
      
      <button onclick = "display()">Click to change caption position</button>
      
      <script>
         function display() {
            document.getElementById("newCaption").style.captionSide = "bottom";
         }
      </script>
      
   </body>
</html>