Jquery tablesorter 行悬停
我需要一个片段来在鼠标悬停时突出显示表格行。如果它有 jquery tablesorter 插件,我无法添加此功能。
I need a snippet to highlight a table row when a mouse is hovered. I was not able to add this functionality if it has jquery tablesorter plugin.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在不影响tablesorter的
zebra widget
的情况下,您可以在tablesorter/style.css中添加一些额外的cssWithout affect the
zebra widget
of tablesorter, you could add some additional css in tablesorter/style.css要突出显示表中的行,您可以使用:
http://jsfiddle.net/userdude/gjm6g/2 /
To highlight rows in a table, you could use:
http://jsfiddle.net/userdude/gjm6g/2/
您可以尝试使用 jQuery.Colorize 插件和 tablesorter。它将允许您保留替代颜色。 http://jquerycolorize.blogspot.com/2012 /01/how-to-use-tablesorter-plugin-with.html
顺便说一句,如果您使用 asp.net mvc,更好的选择是使用 MvcContrib Grid。
You could try using the jQuery.Colorize plugin along with tablesorter. It will allow you to retain alternative colors. http://jquerycolorize.blogspot.com/2012/01/how-to-use-tablesorter-plugin-with.html
Btw, if you use asp.net mvc a better option would be to use MvcContrib Grid.
我想进一步分析行元数据&显示叠加层。我发现了这个问题,但解决方案并没有真正与表排序器一起正常工作。我从这篇 2009 年的博客文章中找到了一个可行的解决方案:
http:// rogtopia.com/entries/jquery-js/tablesorter-hover-with-custom-widget
通过创建 tablesorter 小部件重新添加悬停。
I wanted to further analyze the row metadata & display an overlay. I found this question, but the solutions didn't really work properly with tablesorter. I found a working solution from this 2009 blog post:
http://rogtopia.com/entries/jquery-js/tablesorter-hover-with-custom-widget
Re-add hover by creating a tablesorter widget.