Das Beispiel in diesem Artikel beschreibt die Methode zum dynamischen Ändern von Tabellen-CellPadding und CellSpacing mit JS. Teilen Sie es als Referenz mit allen. Die Details lauten wie folgt:
Der folgende JS-Code ändert den Abstand von Tabellenzellen, indem er die Eigenschaften cellPadding und cellSpacing des Tabellenobjekts ändert
<!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>
Ich hoffe, dass dieser Artikel für das JavaScript-Programmierdesign aller hilfreich sein wird.