table·ÎºÎÅÍ tFoot ¿¤·¹¸àÆ®¿Í ±× ³»¿ëÀ» Á¦°ÅÇÑ´Ù.
ÆĶó¸ÞÅÍ´Â ¾ø´Ù.
¹Ýȯ°ªÀº ¾ø´Ù.
Å×ÀÌºí¿¡ ÇÑ°³ÀÇ tFoot ¿¤·¹¸àÆ®¸¸ ÀÖÀ¸¸é, deleteTFoot ¸Þ¼µå´Â Å×À̺íÀÇ ¹Ù´Ú±Û(footer)À» Á¦°ÅÇÑ´Ù.
¿©·¯°³ÀÇ tFoot ¿¤·¹¸àÆ®°¡ Á¤ÀǵǾî ÀÖÀ¸¸é ¿øº» ¼Ò½º¿¡¼ ´ÙÀ½ tFoot ¿¤·¹¸àÆ®¿¡ Å×ÀÌºí ¹Ù´Ú±Û(footer)·Î ÇÁ·ÒÅ©Æ®°¡ °£´Ù.
°³Ã¼ | script | IE |
---|
ÀÌ ¸Þ¼µå´Â (¿µ¾î)DOM Level 1(Document Object Model Level 1)¿¡¼ Á¤ÀǵǾú´Ù.
¿¹Á¦ Å×À̺íÀÇ Ä1 | ¿¹Á¦ Å×À̺íÀÇ Ä2 |
<TABLE id=tableObj border=1 width=400> <TR> <TD>¿¹Á¦ Å×À̺íÀÇ Ä1</TD> <TD>¿¹Á¦ Å×À̺íÀÇ Ä2</TD> </TR> </TABLE> <DIV id=showA>°á°ú Ç¥½Ãâ</DIV> <SCRIPT> function maketFoot(){ tFootObj=document.all.tableObj.createTFoot(); showA.innerHTML=tableObj.tFoot.nodeName; } function deltFoot(){ tableObj.deleteTFoot(); showA.innerHTML='»èÁ¦µÇ¾ú´Ù'; } </SCRIPT> <BUTTON onclick="maketFoot();">tFoot »ý¼º Ŭ¸¯</BUTTON> <BUTTON onclick="deltFoot();">tFoot Á¦°Å Ŭ¸¯</BUTTON>