$(".time>span").click(function(){ console.log(this); $(this).css({'color':'#03FDFC'}); //选中的效果 $(this).siblings().css({'color':'#FFF'}); //没选中的效果 })