$('#test2').click(function(){
//通过包装成jQuery对象改变颜色
$(this).css('color','blue'); //这里把this改为 "$('#test2')"为什么不行?
})
我可以为什么你不可以,检查下书写看看。