当前位置: 代码迷 >> Web前端 >> jquery鼠标移动下去改变背景的插件
  详细解决方案

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

热度:3   发布时间:2012-11-10 10:48:51.0
jquery鼠标移动上去改变背景的插件
;(function($){
$.fn.extend({
hoverBgColor:function(color) {//参数是颜色的值;
return this.hover(function(){
$(this).css("backgroundColor",color);
},function(){
$(this).css("backgroundColor","");
});
}
});
})(jQuery);
  相关解决方案