我有一个元素数组,我将它们全部附加到我的表单元素中。一切正常。但我无法在我的第三个标签中添加一个“hr”元素。我试过这个。
<script id="locale-template" type="text/x-handlebars-template">
{{#each this}}
{{#if @index % 3 === 0 }}
<hr/>
{{/if}}
<label><input type="checkbox" /> {{name}} </label>
{{/each}}
</script>
但不起作用..有人可以建议我正确的方法吗..?
提前致谢