| 简单好用 https://mottie.github.io/tablesorter/docs/
 
 CDN
 https://www.bootcdn.cn/jquery.tablesorter/
 --------------------
 大概这样就行了。
 
 <script src="https://cdn.bootcdn.net/ajax/libs/jquery.tablesorter/2.9.1/jquery.tablesorter.js"></script>
 <script>
 $(function() {
 $("#myTable").tablesorter();
 });
 </script>
 <table>
 <thead>
 <tr>
 <th>11</th>
 </tr>
 </thead>
 <tbody>
 <tr>
 <td></td>
 </tr>
 </tbody>
 </table>
 
 |