我使用 jQuery 将一些<th>
和<td>
元素附加到表中的许多行:
$(selector).filter(function () {
//jQuery finds some cells, evaluates them and generates new cell content
$(this).parent().append('<td>' + FormattedDate + '</td>');
});
//Some code here generates counts
for(var i = column_count; i > header_count; i--) {
$('.result_table tr:first').append("<th>test</th>");
}
然后,我加载了这个 Greasemonkey 脚本,该脚本应该使整个表可排序。但是,Greasemonkey 脚本仅在我使用 jQuery 添加单元格之前对作为表格一部分的列进行排序。我怎样才能让它在所有列上工作?