gpt4 book ai didi

javascript - jQuery Tablesorter 不对列进行排序

转载 作者:行者123 更新时间:2023-11-29 20:12:13 25 4
gpt4 key购买 nike

我正在将一个 XML 文件解析成一个表,并想使用 jquery tablesorter。既然我已经得到了 tablesorter 不存在的错误消失,我的数据正在填充到表中,但标题无法排序。有任何想法吗?下面列出了 JS 和 HTML 的代码。

HTML:

<html> 
<head>
<title>Read XML</title>
<script type="text/javascript" src="jquery-1.7.1.js"></script>
<script type="text/javascript" src="jquery.tablesorter.js"></script>
<script type="text/javascript" src="custom.js"></script>
</head>
<body>
<table id="table" border="1">
<thead>
<tr>
<th>Item #</th>
<th>Shape</th>
<th>Weight</th>
<th>Color</th>
<th>Clarity</th>
<th>Price($)</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</body>
</html>

JS:

$(document).ready(function() { 
$("#table").tablesorter();
$.ajax({
type: "GET",
url: "tutorial.xml",
dataType: "xml",
success: parseXml
});
$("#table").trigger("update");
});

function parseXml(xml)
{
$(xml).find("diamond").each(function()
{
$("#table tbody").after("<tr><td>" + $(this).find("id").text() +
"</td><td>" + $(this).find("shape").text() + "</td><td>" + $(this).find("weight").text() +
"</td><td>" + $(this).find("color").text() + "</td><td>" + $(this).find("clarity").text() +
"</td><td>" + $(this).find("price").text() + "</td></tr>");
});
}

最佳答案

您需要 $("#table").trigger("update");parseXml 的末尾告诉 tablesorter 表已更新。如果它在 ajaxRequest 返回之前运行,则没有帮助。

关于javascript - jQuery Tablesorter 不对列进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8917981/

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