1
是否有可能在6列圓桌內添加文本框?textbox下面的表列
這將是這個樣子
<table id="table" class="table">
<thead id="search-result">
<tr>
<th>table 1</th>
<th>table 2</th>
<th>table 3</th>
<th>table 4</th>
<th>table 5</th>
<th>table 6</th>
</tr>
</thead>
<tbody id="result">
<tr>
<td>content 1</td>
<td>content 2</td>
<td>content 3</td>
<td>content 4</td>
<td>content 5</td>
<td>content 6</td>
</tr>
</tbody>
</table>
會有100%的文本。那可能嗎?
你可以用'colspan =「6」'和文本框裏面添加一個新行嗎? –
是!謝謝回答 –