是否可以在jtemplate中创建局部变量或for循环(而不是foreach)?我想给HTML元素提供唯一的id,并且需要一个计数器之类的东西。谢谢!
发布于 2012-04-24 01:33:47
使用$index
$index - index of the element in the table
$iteration - ID of the iteration (the next number begins from 0)
$first - is this the first iteration?
$last - is this the last iteration?
$total - the total number of iterations例如
{#foreach $T.Rows as row}
$T.row$index
{#/for}阅读http://www.codeproject.com/Articles/45759/jQuery-jTemplates-Grid
https://stackoverflow.com/questions/10285236
复制相似问题