我有这样的课程
<div class="Ratsheet-destination-detail"></div>
$(".Ratsheet-destination-detail").css("backgroundColor", #5B815B);
现在“Ratsheet-destination-detail”有红色背景颜色。
我如何检查它有背景颜色,如果有,然后将其背景颜色更改为“#616161”
感谢.......
答案 0 :(得分:1)
你的颜色将以rgb值的形式返回。所以检查背景颜色的rgb值。如果为红色rgb(255, 0, 0)
,请将其更改为绿色。
var el = $('.Ratsheet-destination-detail');
if(el.css('background-color') == 'rgb(255, 0, 0)'){
el.css('background-color','green');
}
<强> Live Demo 强>
如果我理解正确,使用op的编辑,应该 。如果bg为红色或灰色,则会将其更改为绿色。
var el = $('.Ratsheet-destination-detail');
if(el.css('background-color') == 'rgb(97, 97, 97)' || el.css('background-color') == 'rgb(255, 0, 0)'){
el.css('background-color','green');
}
<强> Live Demo 2 强>
答案 1 :(得分:1)
$.css
方法将告诉您匿名函数中旧颜色的含义:
$(".Ratsheet-destination-detail").css("background-color", function( index, old ){
// If current is red, set to green, else set to red
return $.Color(old).is("red") ? "green" : "red" ;
});
我在这里使用jQuery Color plugin,$.Color()
来协助处理颜色。如果没有它,您将不得不处理RGB(或可能的RGBA)格式的颜色,例如rgb(255, 0, 0)
,这有时会让人感到有些困惑。
演示:http://jsbin.com/egemaf/2/edit
为了使用jQuery Color插件,您需要从项目中下载和引用源代码,就像使用jQuery一样(假设您没有使用CDN):
<!DOCTYPE html>
<html>
<head>
<title>Swapping Background Colors with jQuery and jQuery Color</title>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.2.min.js"></script>
<script src="https://raw.github.com/jquery/jquery-color/master/jquery.color.js"></script>
</head>
<body>
<div class="Ratsheet-destination-detail">
<p>Hello, World.</p>
</div>
<script>
$(function(){
$(".Ratsheet-destination-detail").css("background-color", function(i, old){
// If current is red, set to green, else set to red
return $.Color(old).is("red") ? "green" : "red" ;
});
});
</script>
</body>
</html>