试图将此表附加到 Div。但不工作。中间的 For 循环有问题。我在这里做错了什么:
var htmlString ="\
<table width='97%' height='233px' border='1' class='NewTable'>\
<tr>\
<th width='43%'>"+currGroupAry[j]+"</th>\
<th width='8%'>Points</th>\
<th width='49%'>Justification</th>\
</tr>\
<tr>\
<td height='29'>Was willing to frequently share ideas and resources</td>\
<td><input id='TotalTEP1' type='text' value='' readonly /></td>\
<td>\
<table id='gp1' width='100%'>\
"for(var i=0; i<=currGroupAry.length; i++){"\
<tr><td style='width:100px;'>"+currGroupAry[j]+"</td><td><textarea style='width:97%; font-size: 14px; background-color: transparent; border:none; resize:none;' cols='10' rows='2' readonly>"+user.comments[j-1]+"</textarea></td></tr>"}"\
</table>\
</td>\
</tr>\</table>"
试图将此表附加到 Div。但不工作。中间的 For 循环有问题。