请帮我看看这段代码为什么没有用 点击不能切换 只显示红色
<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>
<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>
2017-10-05
举报