0

我有下一张桌子:

  <table class="table" id="calls_table">
        <thead>
        <tr>
            <th class="round-bg header">Val1</th>
            <th class="rep-bg header">Val2</th>
            <th class="rep-bg header">Val3</th>

        </tr>
        </thead>
        <tbody data-bind="template: {name: 'call-template', foreach: calls}">
        </tbody>

    </table> 

    <script type="text/html" id="call-template">
        <tr class="alt">
            <td><a data-bind="attr: {href: url}, text: v1" class="simp" href=""></a></td>
            <td><a data-bind="attr: {href: url}, text: v2" class="simp" href=""></a></td>
            <td data-bind="text: v3"></td>

        </tr>
    </script>

问题是如何为 TR 添加类的交替?比如:class='alt', class=''——请指教。

4

2 回答 2

1

您还可以使用 jQuery :odd 或 :even 选择器。

$(".table tr:even").addClass('alt');

这不使用淘汰赛来解决答案,我知道,但有时简单是好的。

于 2012-09-27T11:10:13.093 回答
1

这个问题在 SO 上以 $index 绑定的备用行样式回答

我在jsfiddle整理了一个工作示例

于 2012-09-27T11:06:02.050 回答