gpt4 book ai didi

jquery - 带有动态添加行的 jquery tablesorter 的问题

转载 作者:可可西里 更新时间:2023-11-01 01:50:23 24 4
gpt4 key购买 nike

你好,我在将行动态添加到 jquery tablesorter 时遇到问题,

我必须在表的开头添加一行,默认情况下 tablesorter 工作正常但是在添加行之后,排序的表仅使用前面的行进行排序我的意思是新行不包括在排序中process, new row has some but not all fields blank 有什么解决办法吗?

最佳答案

tablesorter 网站提供了如何执行此操作的详细信息,网址为:Appending table data with Ajax .代码转载如下:

$(document).ready(function() {
$("table").tablesorter();
$("#ajax-append").click(function() {
$.get("assets/ajax-content.html", function(html) {
// append the "ajax'd" data to the table body
$("table tbody").append(html);
// let the plugin know that we made a update
// updateAll ensures sorting is updated as well
$("table").trigger("updateAll");
// set sorting column and direction, this will sort on the first and third column
var sorting = [[2, 1], [0, 0]];
// sort on the first column
$("table").trigger("sorton", [sorting]);
});
return false;
});
});

关于jquery - 带有动态添加行的 jquery tablesorter 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4574057/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com