作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个循环生成 tr 的表
<table>
<div id="trresults">
{FOR LOOP}
<tr>
<td>sample text</td>
<td>sample text</td>
<td>sample text</td>
</tr>
<tr>
<td>sample text</td>
<td>sample text</td>
<td>sample text</td>
</tr>
{END FOR LOOP}
</div>
</table>
我想对 tr 进行分组并为其设置一个 id。所以我为此使用了 div,但 div 将不起作用,因为在表中所有元素都应该在 td 内。那么我该如何解决这个问题呢?
最佳答案
您可以使用 TBODY 元素对行进行分组
<table>
<tbody id="trresults1">
{FOR LOOP}
<tr><td>for loop message</td></tr>
{END FOR LOOP}
</tbody>
<tbody id="trresults2">
{FOR LOOP}
<tr><td>for loop message</td></tr>
{END FOR LOOP}
</tbody>
</table>
关于javascript - 如何为表中的一组 <tr> 设置 id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4656288/
我是一名优秀的程序员,十分优秀!