$(cell).click(function(){
var cellColor = $(this).css("background-color");
if(cellColor != "red"){
$(this).css("background-color", "red");
}else{
$(this).css("background-color", "blue");
}
});
你好,
为什么再次单击同一个单元格时 else 语句在这里不起作用(即单元格的背景在第一次单击时按预期变为红色)?
谢谢