$("a.tip, div.thumbh").mouseenter(function() {
$(this).find('img').stop().animate({width:"162px", height:"162px", left:"-20px", top:"-20px"},100)
}).mouseleave(function() {
$(this).find('img').stop().animate({width:"122px", height:"122px", left:"0px", top:"0px"},100);
});
我只想为a.tip img child 制作动画。我怎样才能做到这一点 ?