JavaScript 中的表格排序
我有一个要应用排序的表,我下载了 sortTable.js,并通过 将其包含在我的 asp 页面中,将表类指定为
sortable
并将所有标题放在 标记内,但排序似乎仍然不起作用。我错过了什么吗?
I have a table on which I want to apply sorting, I downloaded the sortTable.js, included it in my asp page by <script src="sorttable.js"></script>
, gave the table class as sortable
and have all the headings inside <thead><th>
tag, but still sorting does not seem to work. Am I missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我使用的函数:
table
是 DOM 表对象,colNum
是表中的列索引(从 0 开始)。它假设表中有一个标题行(不会被排序)。对大表(数百行)进行排序需要几秒钟,但较小的表会立即排序。Here's the function I use:
table
is the DOM table object andcolNum
is the column index in the table (0 based). It assumes there is a header row on the table (which wont be sorted). It will take a couple seconds to sort a large table (hundreds of rows), but smaller tables sort instantly.