1

jtemplate でローカル変数または for ループ (foreach の代わりに) を作成することは可能ですか? HTML 要素に一意の ID を付与したいので、カウンターか何かが必要です。ありがとう!

4

1 に答える 1

4

使用する$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を読む

于 2012-04-23T17:33:47.290 に答える