我想一個新行添加到我的桌子上的改變事件。以下是我迄今爲止:
$('#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>
我不能得到這個工作。我錯過了這裏的任何東西,任何人都可以讓我知道我的錯誤在哪裏?
在此先感謝。
如果你添加'thead'和'tbody'部分到你的表中,你可以將新行添加到tbody中......另外,我只是意識到你正在追加一個單元格。你想追加一個單元格還是一行? – MrOBrian 2012-07-18 17:49:55