The example in this article describes the method of dynamically changing the width of the table border with JS. Share it with everyone for your reference. The details are as follows:
The following JS code modifies the table border width through the border attribute of the table object
<!DOCTYPE html> <html> <head> <script> function changeBorder() { document.getElementById('myTable').border="10"; } </script> </head> <body> <table border="1" id="myTable"> <tr> <td>100</td> <td>200</td> </tr> <tr> <td>300</td> <td>400</td> </tr> </table> <br> <input type="button" onclick="changeBorder()" value="Change Border"> </body> </html>
I hope this article will be helpful to everyone’s JavaScript programming design.