TBody 의 해석 및 용법


 html     ,   Tbody     ,             ,      head ,body   ,         ,             ,             ,

             :  、     。        :thead,tbody,tfoot   。
thead          

tbody     

tfoot        ……

             。        。(thead    
tbody     
tfoot    )
TBody  table    ,                      。
TBody THead TFoot        “ ”,THead     Head  ,TFoot         。 TBody          。
  :
<TABLE>
<THEAD>
<TR>
<TD>
This text is in the THEAD.
</TD>
</TR>
</THEAD>
<TBODY>
<TR>
<TD>
This text is in the TBODY.
</TD>
</TR>
</TBODY>
<TFOOT>
<TR>
<TD>
This text is in the table footer.
</TD>
</TR>
</TFOOT>
</TABLE>

   dom      :
<table>
              <thead>
                          <tr>
                                      <td>  </td>
                          </tr>
              </thead>
              <tbody>
                          <tr>
                                      <td>  </td>
                          </tr>
              </tbody>
              <tfoot>
                          <tr>
                                      <td>  </td>
                          </tr>
              </tfoot>
</table>

      tbody       tbody,             ,alert  table innerHTML      。


좋은 웹페이지 즐겨찾기