站内搜索:
首页 >> 前端 >> 内容
jQuery点击松开切换css样式及切换背景图

时间:2017/3/2 9:59:00

jQuery点击松开切换css样式及切换背景图,$(function(){//点击切换签到按钮中的树叶及按钮背景颜色。

$(".attence_image").mousedown(function(){
$(this).parent().find("img").attr("src","../../img/签到_树叶高亮.png");
$(".attence_image").css("background-color","#7594EF");
});
$(".attence_image").mouseup(function(){
$(this).parent().find("img").attr("src","../../img/签到_树叶.png");
$(".attence_image").css("background-color","#5D82EC");
});

});

鼠标点击松开切换效果:

mousedown()mouseup()

  • 上一篇:Jquery计算年龄
  • 下一篇:Echartstooltip自定义formatter设置字体颜色
  • 返回顶部