重複の可能性:
jQuery でテーブル行を追加
変更イベントでテーブルに新しい行を追加したいと考えています。これが私がこれまでに持っているものです:
$('#CourseID').change(function() {
$('#CourseListTable > tr > td:last').append('<td>...</td>');
});
ここに私のテーブルがあります:
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<dynamic>" %>
<table id="CourseListTable">
<tr>
<th>Course ID</th>
<th>Course Section</th>
<th>Level</th>
</tr>
<tr>
<td><select name="CourseID" id="CourseID"></select></td>
<td><select name="CourseSection" id="CourseSection"></select></td>
<td><select name="Level" id="Level"></select></td>
</tr>
</table>
これを機能させることができません。私はここに何かが欠けています.誰かが私のエラーがどこにあるのか教えてもらえますか?
前もって感謝します。