我正在使用mottie的叉子 https://mottie.github.io/tablesorter/docs/ 但有没有人知道为什么将JS放在页面底部以帮助加快加载,对这个JS不起作用?
<script src="DOMAIN/tablesorter/js/jquery.tablesorter.min.js"></script>
<script type="text/javascript">
$(function(){
$("#myTable").tablesorter({
sortList : [[3,1]], // initial sort columns (2nd and 3rd)
cssInfoBlock : "tablesorter-no-sort"
});
});
</script>