我想要一個表,讓我們說10個總列,但是當表第一次呈現時,我希望它只顯示10箇中的7個,或者隱藏3個列從中間讓我們說(不是結束3或第一)。然後,有一個按鈕或其他東西,如果他們點擊,它會展開表格並將這些列插入到正確的位置。隱藏,然後在HTML中展開或顯示一列
這可能嗎?我正在使用jQuery。我知道在jQuery中有一個顯示和隱藏功能,但它似乎只適用於對象,例如作爲一個整體的段落或表格,而不是特定的元素。
目前我有這樣的:
<table id="tableone" border="1">
<tr class="del">
<td>Row 0 Column 0</td>
<td >Row 0 Column 1</td>
<td >Row 0 Column 2</td>
</tr>
<tr class="del">
<td>Row 1 Column 0</td>
<td>Row 1 Column 1</td>
<td>Row 1 Column 2</td>
</tr>
<tr class="del">
<td>Row 2 Column 0</td>
<td>Row 2 Column 1</td>
<td>Row 2 Column 2</td>
</tr>
<tr class="del">
<td>Row 3 Column 0</td>
<td>Row 3 Column 1</td>
<td>Row 3 Column 2</td>
</tr>
<tr class="del">
<td>Row 4 Column 0</td>
<td>Row 4 Column 1</td>
<td>Row 4 Column 2</td>
</tr>
<tr class="del">
<td>Row 5 Column 0</td>
<td>Row 5 Column 1</td>
<td>Row 5 Column 2</td>
</tr>
</table>
你試過了什麼?顯示一些除了標記以外的調試代碼。 – Shreedhar 2012-07-19 15:33:03