qq_世界左右丈量阳光_0
2017-10-05 14:52
<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>
jQuery基础 (一)—样式篇
217509 学习 · 1218 问题
相似问题