$(function(){ /* //$("html body div table.table_list tbody tr").not(":has('td a img[src*=tj.gif]')").mouseover(function(){ $("html body div table.table_list tbody tr:not(':has('td a img[src*=tj.gif]')')").mouseover(function(){ //alert($(this)[0].style.backgroundColor); $(this).css("backgroundColor","66CCFF");// "red" "#f8fbfd" $(this).mouseout(function(){ $(this).css("backgroundColor","");//$(this)[0].style.backgroundColor=""; }); }); */ var tr2=$("table.table_list tr:not(':has('td a img[src*=tj.gif]')')"); tr2.mouseover(function(){ $(this).css("backgroundColor","66CCFF"); }) tr2.mouseout(function(){ $(this).css("backgroundColor",""); }) })