2012-10-18 57 views
1

我有一個基本的HTML表所示:添加工具欄到表下面的HTML語法

<table> 
    <thead> 
    <tr> 
     <th></th> 
     <th></th> 
    </tr> 
    </thead> 
    <tbody> 
    <tr> 
     <td></td> 
     <td></td> 
    </tr> 
    </tbody> 
</table> 

我想增加它上面的工具欄。將工具欄作爲thead中的一行添加到語義上是否可以接受?

<table> 
    <thead> 
    <tr> 
     <th colspan="2"> 
     <!-- toolbar buttons --> 
     </th> 
    </tr> 
    <tr> 
     <th></th> 
     <th></th> 
    </tr> 
    </thead> 
    <tbody> 
    <tr> 
     <td></td> 
     <td></td> 
    </tr> 
    </tbody> 
</table> 
+0

爲什麼你首先使用一張桌子? –

+0

工具欄按鈕是否與表格中的數據相關? –

+0

Diodeus,我正在顯示錶格數據。 –

回答

3

恕我直言,因爲工具欄相關的表格數據,我看到有該工具欄住在thead一排沒有語義問題。