我正在做一个项目,我需要在一个页面上显示几个拍卖的状态。每个项目都有不同的结束日期。我正在使用cfquery
从数据库中提取数据,然后使用cfoutput
构建表。那部分很好。那里没有问题。我的问题是,如何将Keith Wood 的倒数计时器的多个实例放在表中,以便每个项目都有倒计时?
这是我的表格标题:
<table id="large" class="tablesorter" border="0" CELLSPACING="1" CELLPADDING="0" width="50%">
<thead>
<tr class="tablesorter-headerRow">
<th id="itemnum" class="sorter-numeric">ItemNum</th>
<th id="highbidder" class="sorter-numeric">HighBidder</th>
<th id="closenum" class="sorter-numeric">Time Left</th>
<th id="highbidprice" class="sorter-numeric">HighBid</th>
</tr>
</thead>
<tbody>
<cfoutput>
<!--- Code builds the table body --->
<div class="countdown-styled clearfix" style="width:200px;"></div>
</cfoutput>
</tbody>
</table>
我看过这些:1)Jquery 多个倒计时2)使用 jquery 在同一页面上进行多个倒计时,但这些似乎包括每个页面的唯一行 ID,然后是其他一些 jquery 代码,或者只是对 id 进行硬编码。问题是我不知道最终版本会有多少项目。现在我有 35 个,但这不是恒定的,所以我不能这样做。有什么想法或帮助吗?真的很感激。