本文實例講述了JS實現控制表格只顯示行邊框或者只顯示列邊框的方法。分享給大家供大家參考。具體分析如下:
通過下面的JS代碼你可以控制表格只顯示行與行之間的分隔線,也可以只顯示列與列之間的分隔線,主要用到了表格對象的rules屬性
<!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>
希望本文所述對大家的javascript程序設計有所幫助。