这是我的fiddle
这是我的HTML代码
<table id="example" class="display" cellspacing="0" width="100%">
<tbody>
<tr>
<td style="display:none">Tiger Nixon</td>
<td>System Architect</td>
</tr>
<tr>
<td style="display:none">Garrett Winters</td>
<td>Accountant</td>
</tr>
</tbody>
</table>
我得到的输出就像
System Architect
Accountant
但我希望显示像
System Architect | Accountant
即,Row应该看起来像列。
注意:
我隐藏了第一个td,因为我的搜索插件(数据表)会考虑<td>
<tr>
我该怎么做?
答案 0 :(得分:2)
看起来您正在尝试在表元素上强制使用非表结构。尽管使用CSS可以实现这一点(正如其他人所说的那样),但这是不好的做法,应该避免使用。我建议切换到使用divs
或列表元素的其他UI插件。
答案 1 :(得分:1)
我会说一个简单的CSS可以解决这个问题:
#example tr {
display : inline-block;
}
答案 2 :(得分:0)
#example tr {
display: inline-block;
}
请使用此...
答案 3 :(得分:0)