标签: javascript templates loops mustache
我想在我的Mustache.js模板中创建一个“for”循环。
我想做那样的事情:
<ol> {{for $i = 0; $i < $steps; $i++}} <li {{$i == $active}}class="active"{{/$i}}></li> {{/for}} </ol>
使用变量$steps = 5和$active = 2例如
$steps = 5
$active = 2
有什么想法吗?
感谢。