因此,如果用户点击了文字'添加新条目' div称为#34; gamesrepeat"再次创建,因此用户可以为同一个问题添加多个答案,这可能吗?
我的代码是:
<div id="games">
<asp:Literal ID="Literal1" runat="server" Text="Video Games"><b>Games</b> </asp:Literal>
<div id="gamesrepeat">
<table>
<tr>
<td>Video game name?</td>
<td>console for game?</td>
</tr>
<tr>
<td><asp:TextBox ID="TextBox1" runat="server" TextMode="MultiLine"> </asp:TextBox></td>
<td><asp:TextBox ID="TextBox2" runat="server" TextMode="MultiLine"></asp:TextBox></td>
</tr>
</table>
</div>
<div id="addnew">
Add new entry</div>
</div>