使用 javaScript 我动态填充表头和表数据。我想根据单击的标题单元格对表格的行进行排序。
注意:主要要求是我不想使用任何 jQuery 插件,例如 tablesorter、jqGrid 等,
使用 javaScript 我动态填充表头和表数据。我想根据单击的标题单元格对表格的行进行排序。
注意:主要要求是我不想使用任何 jQuery 插件,例如 tablesorter、jqGrid 等,
其中一个想法是,
表头的onlick(必须在ajax服务器代码中编写此代码)调用动态获取表内容的jquery ajax函数。
JAVASCRIPT
function getTableData(sort_field, sort_by) { // sort_field: id, date, name.. & sort_by: ascending or descending
// do call ajax function for getting the data.
// Pass the sort_field and sort_by value as sort field name and
// do the server code accordingly.
}
HTML
<table>
<tr>
<th onclick="getTableData('date','asc');">Date</th>
</tr>
</table>