JS's method of dynamically modifying the tables cellPadding and cellSpacing

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

This example shows how JS dynamically modifies the tables cellPadding and cellSpacing. Share with you for your reference. The details are as follows:

The JS code below modifies the spacing of the table cells by modifying the cellPadding and cellSpacing properties of the table object


<!DOCTYPE html>
<html>
<head>
<script>
function padding()
{
document.getElementById('myTable').cellPadding="15";
}
function spacing()
{
document.getElementById('myTable').cellSpacing="15";
}
</script>
</head>
<body>
<table id="myTable" border="1">
<tr>
<td>100</td>
<td>200</td>
</tr>
<tr>
<td>300</td>
<td>400</td>
</tr>
</table>
<br>
<input type="button" onclick="padding()"
value="Change Cellpadding">
<input type="button" onclick="spacing()"
value="Change Cellspacing">
</body>
</html>

I hope this article is helpful for you to design javascript program.


Related articles: