$("#resTree").hover(function(){
$(this).css("background-color","yellow");//hover时效果
},function(){
$(this)css("background-color","pink");//非 hover时效果
});
可以参考w3c里的使用
$("#resTree").hover(function(){
$(this).css("background-color","yellow");//hover时效果
},function(){
$(this)css("background-color","pink");//非 hover时效果
});
可以参考w3c里的使用