JS's method of dynamically changing the width of a table border

  • 2020-05-19 04:16:23
  • OfStack

This example shows how JS dynamically changes the width of a table border. Share with you for your reference. The details are as follows:

The JS code below modifies the table border width through the border property 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 has been helpful to your javascript programming.


Related articles: