使用Mustache.js模板系统创建一个“for”循环

时间:2013-05-13 13:57:32

标签: 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例如

有什么想法吗?

感谢。

0 个答案:

没有答案