$(".course-form .course-start img").each(function(i) {
  $(this).toggle(function(){
    $(this).attr("src","images/start-l.png");
    $(this).prevAll().attr("src","images/start-l.png");
    },function(){
    $(this).attr("src","images/start-h.png");
    $(this).prevAll().attr("src","images/start-h.png");
  });
});

posted on 2016-03-01 09:03  仔仔爱学习  阅读(1440)  评论(0)    收藏  举报