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

ตั้งค่าว่าควรยุบขอบตารางเป็นเส้นขอบเดียวหรือไม่ด้วย JavaScript


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

ตัวอย่าง

<!DOCTYPE html>
<html>
   <body>
      <table id="newTable" border="2">
         <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 collapse</button>
      <script>
         function display() {
            document.getElementById("newTable").style.borderCollapse = "collapse";
         }
      </script>
   </body>
</html>