我正在尝试对表数据进行排序。我可以使用Javascript中的doSort函数对onClick列的数据进行排序,但无法对表加载时的数据进行排序
有什么想法吗?
<thead>
<tr>
<th class="sortcol sortasc" onclick="doSort(0);">Code</th>
<th class="sortcol sortasc" onclick="doSort(1);">Name</th>
</tr>
感谢您的时间!!
答案 0 :(得分:0)
如果您没有使用jquery或表格排序库,那么您需要依赖于浏览器发出加载完成后的信号,然后调用您自己的排序方法。在你的页面中有这样的东西应该让你开始:
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function(event) {
doSort(0);
});
</script>