如何将div附加到Polymerjs中的每个tr

时间:2015-04-27 14:59:47

标签: javascript html5 templates polymer

如何将div附加到每个tr

以下示例无效。它会将div附加到table,而不是每个tr

<table>
<tr repeat="{{ el in elements }}">
  <td>{{ el.name }}</td>
  <div> This tag I want to append to tr tag </div>
</tr>
</table>

1 个答案:

答案 0 :(得分:0)

这会打印很多<td>,但我不确定你在寻找什么。试试吧

<table>
<tr>
    <template repeat="{{ el in elements }}">    
         <td>{{ el.name }}</td>
    </template>

    <div> This tag I want to append to tr tag </div>
</tr>
</table>