0

我已将表格行位置保存在数据库中。现在我想根据他们的位置显示表格行。请告诉我如何在 jQuery 中加载表数据。

即我的代码:

<table id="table">
<thead>
<th></th>
<th align="left">Title</th>
<th align="left">Importance</th>
<th align="left">Urgency</th>
<th></th>
</thead>
<tbody>
<%for(Todo todo:todoList){ %>
<tr>

<td><input type="checkbox" id="todocheck" value="<%=todo.getId()%>"/></td>
<td><a href="#" id="aid" style="padding-left:<%=todo.getCss()%>"><%=todo.getTitle() %></a></td>
<td><input type="text" id="importance" value="<%=todo.getImportance()%>" /> </td>
<td><input type="text" id="urgency" value="<%=todo.getUrgency()%>" /> </td>
<td><input type="hidden" name="parentId" id="parentId" value="<%=todo.getParent_tash_id()%>"/></td>

</tr>
<%} %>
</tbody>
</table>
4

0 回答 0