var newrow =
$(
"<tr id=" + mahs + ">"
+ "<td id=\"stt\">" + $("#txtIncrement").val() + "</td>"
+ "<td id=\"mahs\">" + mahs + "</td>"
+ "<td id=\"fullname\">" + $("#txtFullname").val() + "</td>"
+ "<td id=\"delete\">" + "<a href=\"#\"><img src=\"/Contents/Images/delete.png\" style=\"width:30px;height:30px;\" alt=\"\" /></a>" + "</td>"
+ "</tr>");
$("#tbContent").append(newrow);
このコードを使用して、以下の div タグの table(tbContent) に新しい行を追加します。
<div id="scrollpanel" class="cvleft" style="height:417px; overflow:scroll;">
<table id="tbContent">
<thead>
<tr>
<th>STT</th>
<th>HS</th>
<th>Name</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
table に追加されたときにその行にフォーカスするにはどうすればよいですか? ありがとう!