gpt4 book ai didi

javascript - 表列未使用 tablesorter 插件进行排序

转载 作者:行者123 更新时间:2023-11-28 07:29:14 25 4
gpt4 key购买 nike

下面是我的html页面的格式:

<table id = 'myTable' class='table table-striped tablesorter'>
<thead>
<tr>
<th>Wild</th>
<th>Release Date</th>
<th>CVE</th>
<th>QH Detection Name</th>
<th>Comments</th>
</tr>
</thead>
<tr class='info'>
<td width='3%'><img src='ex.png' alt='' border=3 height=25 width=25></img></td>
<td width='10%'>03/11/2015</td>
<td width='12%'>CVE-2015-1623</td>
<td width='17%'>
<li>abc</li>
<li>xyz</li>
<li>pqr</li>
</ul>
</td>
<td width='58%'>
<b>Description: </b><br>Microsoft Internet Explorer 11 allows remote attackers to execute arbitrary code or cause a denial of service (memory corruption) via a crafted web site, aka "Internet Explorer Memory Corruption Vulnerability".
VPS release: 150311-00
<br><b>Link: </b><br>
<ul>
<li><a href =http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-1623 target ='_blank'>http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-1623<br></a></li>
</ul>
</td>
</tr>
.......
</table>

JS页面:

$(document).ready(function() 
{
$("#myTable").tablesorter();
}
);
$(document).ready(function()
{
$("#myTable").tablesorter( {sortList: [[1,0],[2,0]]} );
}
);

我正在使用表排序器插件,但是表未排序。我第一次使用tablesorter插件,我按照tablesorter文档中提到的方式进行操作,但是它不起作用

最佳答案

正如 @doveyg 所说,不需要脚本的第一 block 。事实上,因为 tablesorter 已经在该表上初始化,所以第二个代码块中包含的选项将被完全忽略,这就是表不排序的原因。

您所需要的是:

$(function() 
{
$("#myTable").tablesorter( {sortList: [[1,0],[2,0]] } );
}
);

关于javascript - 表列未使用 tablesorter 插件进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29294484/

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