The example in this article describes the JS method to control the table to display only row borders or column borders. Share it with everyone for your reference. The specific analysis is as follows:
Through the following JS code, you can control the table to display only the separators between rows, or only the separators between columns, mainly using the rules attribute of the table object
<!DOCTYPE html> <html> <head> <script> function rowRules() { document.getElementById('myTable').rules="rows"; } function colRules() { document.getElementById('myTable').rules="cols"; } </script> </head> <body> <table id="myTable" border="1"> <tr> <td>Row1 cell1</td> <td>Row1 cell2</td> </tr> <tr> <td>Row2 cell1</td> <td>Row2 cell2</td> </tr> <tr> <td>Row3 cell1</td> <td>Row3 cell2</td> </tr> </table> <br> <input type="button" onclick="rowRules()" value="Show only row borders"> <input type="button" onclick="colRules()" value="Show only col borders"> </body> </html>
I hope this article will be helpful to everyone’s JavaScript programming design.