本文汇总了jQuery操作Table的技巧。分享给大家供大家参考,具体如下:
1.鼠标移动行变色
方法一:jQuery中的hover(fun(),fun())方法,参数一:第一个方法是添加样式功能,参数二:第二个方法是取消样式功能
$(#table1 tr).hover(function(){
$(this).children(td).addClass(hover)
},function(){
$(this).children(td).removeClass(hover)
})
方法二:
$(#table1 tr:gt(0)).hover(function() {
1