讲的不如 http://blog.csdn.net/yixuan_1/article/details/12836379 详细
                
                    
                    2015-04-30
                
            $("#test1").click(function(){
//直接处理
var foo = $('ul.first').find('.foo');
foo.css('background-color', 'red');
$('ul.first').find('.bar').css('background-color', 'green');
})
                //直接处理
var foo = $('ul.first').find('.foo');
foo.css('background-color', 'red');
$('ul.first').find('.bar').css('background-color', 'green');
})
                    
                    2015-04-25