<div class="change">
点我变化
</div>
<script type="text/javascript">
$(".change").click(function(){
if($(this).css("color")=="red"){
$(this).css("color","yellow");
}else{
$(this).css("color","red");
}
})
</script>
比较的时候把颜色转换为rgb了
把条件里的red换成rgb(255, 0, 0)就可以了 注意0前面要加空格
<script type="text/javascript"> $(".change").click(function(){ if($(this).css("color")=='rgb(255, 0, 0)'){ $(this).css("color","yellow"); }else{ $(this).css("color","red"); } }) </script>