我需要一個片段來突出顯示一個表格行時,鼠標懸停。如果它有jquery tablesorter插件,我無法添加此功能。Jquery tablesorter行懸停
1
A
回答
2
要在表格中突出顯示的行,你可以使用:
$(document).ready(function() {
$("table").tablesorter();
$('table tr').has(':not(th)').hover(
function(){
$(this).data('currColor',$(this).css('background-color'));
$(this).css('background-color','#cdd');
},
function(){
$(this).css('background-color',$(this).data('currColor'));
}
);
});
4
沒有影響的tablesorter的zebra widget
,你可以在的tablesorter添加一些額外的CSS/style.css中
table.tablesorter tr.even:hover td,
table.tablesorter tr.odd:hover td {
background-color: blue;
}
0
你可以嘗試使用jQuery.Colorize插件和tablesorter。它可以讓你保留替代顏色。 http://jquerycolorize.blogspot.com/2012/01/how-to-use-tablesorter-plugin-with.html
順便說一句,如果你使用asp.net mvc,更好的選擇是使用MvcContrib Grid。
0
我想進一步分析行元數據&顯示覆蓋。我發現這個問題,但解決方案並沒有真正適用於tablesorter。我發現從這個2009年的博客文章工作的解決方案:通過創建的tablesorter插件
http://rogtopia.com/entries/jquery-js/tablesorter-hover-with-custom-widget
重新添加懸停。
<script type="text/javascript">
$(document).ready(function() {
// tablesorter widget to setup rollovers on table rows
$.tablesorter.addWidget({
id: "hover",
format: function(table) {
$('tr',$(table)).mouseover(function() {
$(this).addClass('hover');
}).mouseout(function() {
$(this).removeClass('hover');
});
}
});
// then instantiate your tablesorter calling the hover widget
$('.tablesorter').tablesorter({widthFixed: true, widgets: ['hover'] });
});
</script>
相關問題
- 1. 錶行懸停與Tablesorter/jQuery的突出顯示?
- 2. 將懸停jQuery懸停
- 3. jquery懸停在懸停內
- 4. 的jQuery的tablesorter - 鼠標懸停列標題
- 5. 暫停jQuery懸停(鼠標懸停)
- 6. 暫停懸停動畫懸停Jquery
- 7. jQuery的懸停
- 8. Jquery懸停toggle
- 9. jQuery的懸停
- 10. jQuery的懸停
- 11. jQuery的:懸停
- 12. 不懸停JQuery
- 13. jQuery的 - 懸停
- 14. JQuery Dropdown懸停
- 15. jQuery的:懸停
- 16. jQuery懸停live()?
- 17. jQuery的:懸停
- 18. 懸停jQuery
- 19. 的jQuery懸停():
- 20. jquery懸停setTimeout
- 21. jQuery Tablesorter靜態行
- 22. 在jquery中懸停()的懸停詞嗎?
- 23. jQuery prepend懸停鼠標懸停交換
- 24. jquery懸停()不觸發懸停
- 25. 懸停在懸停jQuery的/ javascript的
- 26. 停止懸停jQuery加載
- 27. jQuery滑塊停在懸停
- 28. jquery暫停懸停滑塊
- 29. jquery滑塊暫停懸停
- 30. 暫停jquery中的懸停
現有的css不應該被刪除。 – minil 2011-04-25 03:47:04
然後存儲顏色,這並不難。 http://jsfiddle.net/userdude/gjm6g/2/ – 2011-04-25 03:53:19
爲我工作(稍作修改),謝謝! – Sirber 2011-11-23 19:34:42