setTimeout(function() {
$("report8.tr").each(function(){ var _height = $(this).height(); $(this) .mouseover(function(){$(this).height('140');}) .mouseout(function(){$(this).height(_height);}); }); 初始化后,$("report8.tr").each(function() 这里不指定report8.的时候,可以生效,但是是所有决策报表的行高都会改变, 我只想指定这个报表块生效,请问如何写? |