HTML ELements的动态ID

时间:2011-10-11 17:16:59

标签: html

让我们说在aspx页面中我有一个for循环,在for循环中我想创建元素。如何为它们动态生成id。

例如,如果我有:

    <div>
    <% Foreach (item in itemCollection) { %>
    {
       <table>
      <tr>
      here I want to create td elements with id as reconText1 reconText2...the numbers at the end I get by incrementing the index.

    </tr>
   </table>
    }
 </div>

1 个答案:

答案 0 :(得分:3)

您可以使用带有索引的for循环或带有foreach的单独索引变量:

<% int i = 1; %>
<% foreach (item in itemCollection) { %>
    <tr>
        <td id="reconText<%= i %>">...</td>
    </tr>
    <% i++; %>
<% } %>