jquery鼠标移动上去改变背景的插件
;(function($){
$.fn.extend({
hoverBgColor:function(color) {//参数是颜色的值;
return this.hover(function(){
$(this).css("backgroundColor",color);
},function(){
$(this).css("backgroundColor","");
});
}
});
})(jQuery);
发布时间: 2012-11-10 10:48:51 作者: rapoo
jquery鼠标移动上去改变背景的插件
;(function($){
$.fn.extend({
hoverBgColor:function(color) {//参数是颜色的值;
return this.hover(function(){
$(this).css("backgroundColor",color);
},function(){
$(this).css("backgroundColor","");
});
}
});
})(jQuery);