자바스크립트 deleteTFoot() 메소드
번역 결과:
delete
English[dəˈli:t] US[diˈlit]
vt.& vi. Delete
3인칭 단수: deletes 현재 분사: 삭제 과거 시제: 삭제 과거 분사: 삭제
foot
영국식 [fʊt] 미국식 [fʊt]
발; 발(=12인치 또는 30.48cm); 걸음걸이
vt.& vi. 단수: foots 복수: foot 현재 분사: footing 과거 시제: footed 과거 분사: footed
자바스크립트 deleteTFoot() 메소드통사론
함수: 는 테이블에서 <tfoot> 요소를 삭제하는 데 사용됩니다.
구문: tableObject.deleteTFoot()
설명: 테이블에 <tfoot> 요소가 있으면 문서에서 삭제하고, 그렇지 않으면 아무 작업도 수행하지 않습니다.
자바스크립트 deleteTFoot() 메소드예
<html> <head> <script type="text/javascript"> function delRow() { document.getElementById('myTable').deleteTFoot() } </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> <tfoot><td>my table foot</td></tfoot> </table> <br /> <input type="button" onclick="delRow()" value="Delete table foot"> </body> </html>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요