首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

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

2012-11-10 
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);

热点排行