怎样用Jquery选择背景色为绿色的tr?
怎样用Jquery选择背景色为绿色的tr?
------解决方案--------------------
那还得看你给TR设置背景色的方式来决定了
1. <tr bgcolor="#669900">
trArr =[];
$(your table id).find("tr").each(function(){
if($(this).attr("bgcolor") == "#669900") trArr .push($(this));
}); //循环后得到的trArr 就得到了 TR 集合
2. <tr style="background-color:#690">
这种方式的获取行 方法 和 方法1 类同,就不写了;
3. <tr class="greenbg">
这种方式最简单,只要一行代码搞掂
$(".greenbg")