이 문서의 예에서는 행 테두리 또는 열 테두리만 표시하도록 테이블을 제어하는 JS 메서드를 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
다음 JS 코드를 통해 주로 테이블 개체의 규칙 속성을 사용하여 행 사이의 구분 기호만 표시하거나 열 사이의 구분 기호만 표시하도록 테이블을 제어할 수 있습니다.
<!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 프로그래밍 설계에 도움이 되기를 바랍니다.