读书人

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);

读书人网 >Web前端

热点推荐