js实现点击选中,再次点击取消。 数值表达的颜色没有效果 求高手解答 谢谢
方法(1)使用了英文表达的颜色红色有效果if(tp.style.backgroundColor=='red'){tp.style.backgroundColor='';}...
方法(1)使用了英文表达的颜色 红色有效果
if(tp.style.backgroundColor == 'red'){
tp.style.backgroundColor = '';
}else{
tp.style.backgroundColor = 'red';
}
方法(2)使用了rgb数值表达的颜色 #654678 确没有效果 只要是#数值表达的颜色都没有效果 这是怎么回事
if(tp.style.backgroundColor == '#654678'){
tp.style.backgroundColor = '';
}else{
tp.style.backgroundColor = '#654678';
} 展开
if(tp.style.backgroundColor == 'red'){
tp.style.backgroundColor = '';
}else{
tp.style.backgroundColor = 'red';
}
方法(2)使用了rgb数值表达的颜色 #654678 确没有效果 只要是#数值表达的颜色都没有效果 这是怎么回事
if(tp.style.backgroundColor == '#654678'){
tp.style.backgroundColor = '';
}else{
tp.style.backgroundColor = '#654678';
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询