jquery鼠标移动下去改变背景的插件

jquery鼠标移动上去改变背景的插件(function($){$.fn.extend({hoverBgColor:function(color) {//参数是颜

jquery鼠标移动上去改变背景的插件
;(function($){
$.fn.extend({
hoverBgColor:function(color) {//参数是颜色的值;
return this.hover(function(){
$(this).css("backgroundColor",color);
},function(){
$(this).css("backgroundColor","");
});
}
});
})(jQuery);