jQuery TableSort不适用于jQuery floatThead

时间:2018-10-19 11:36:26

标签: javascript jquery jquery-plugins

我有下面的MCVE,其中有一个来自tablesorter@github的示例表

单击表头对表进行排序。当我添加此示例中注释的Top_5 = [] with open (("winscorefile.txt"),"r") as Top5_File: for line in Top5_File: score, name = line.split(' ') Top_5.append(int(score)) Top_5.sort(reverse=True) print(Top_5[:5]) 行时,它将停止工作。

您知道问题是什么以及如何解决?

$('table#myTable').floatThead();

1 个答案:

答案 0 :(得分:2)

我偶然发现了一个非常简单的解决方案:顺序很重要!只需添加$('table#myTable').floatThead(); 已调用函数tablesorter()

<html lang="en">
 <head>
   <title>JQuery table sorter with JQuery floatThead MCVE</title>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
   <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
   <script src="https://rawgit.com/christianbach/tablesorter/master/jquery.tablesorter.min.js"></script>
   <script src="https://cdnjs.cloudflare.com/ajax/libs/floatthead/2.1.2/jquery.floatThead.min.js"></script>
 </head>
 <body>
  <table id="myTable" class="tablesorter" border=1> 
  <thead> 
  <tr><th>Last Name</th><th>First Name</th><th>Email</th><th>Due</th><th>Web Site</th></tr> 
  </thead> 
  <tbody> 
   <tr><td>Smith</td><td>John</td><td>jsmith@gmail.com</td><td>$40.00</td> 
   <td>http://www.jsmith.com</td></tr> 
   <tr><td>Bach</td><td>Frank</td><td>fbach@yahoo.com</td><td>$50.00</td> 
   <td>http://www.frank.com</td></tr> 
   <tr><td>Doe</td><td>Jason</td><td>jdoe@hotmail.com</td><td>$100.00</td> 
   <td>http://www.jdoe.com</td></tr> 
   <tr><td>Conway</td><td>Tim</td><td>tconway@earthlink.net</td><td>$51.00</td> 
   <td>http://www.timconway.com</td></tr> 
  </tbody> 
  </table>   

  <script type="text/javascript">
   $(document).ready(function() { $("#myTable").tablesorter(); $('table#myTable').floatThead(); } 
   );
  </script>
 </body>
</html>