如何使用 jquery 创建自定义排序标准
我有一个在 jquery 中排序的表,并且有一列我希望始终保持不变,而其他列则围绕它排序。我想要的是列的顺序始终为“伟大”、“坏”、“失败”,而其他所有列都可以排序,并且我不希望该列按字母顺序排序。对我来说,执行此操作最简单的方法是什么?
I have a table that sorts in jquery and I have one column that I would like to always remain the same while the other columns sort around it. What I want is for the order of the column to always be Great, Bad, Failure while every other column can be sorted and I don't want to the column to sort alphabetically. What is the easiert way for me to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你必须嵌套一张表,其中一个表包含你不希望排序的列,另一个表与其余列嵌套。
I think you'll have to nest a table, one with the column you don't want sorted nest one with the the rest.