如何按颜色选择列表项

时间:2013-05-31 15:20:23

标签: list colors comparison-operators

我想获取列表中任何具有特定文本颜色的项目的ID,在此示例中为rgb(255,0,0)。在if语句之前一切正常。有关比较运算符和颜色需要了解的内容吗?

$('.jqshow li').click(function() {
$('.jqshow li').attr('style', 'color:black');
$(this).attr('style','color:rgb(255,0,0)');
$('.jqshow li').each(function(i){
  var getcolor = $(this).css('color');
  if(getcolor != 'rgb(255,0,0)') {
    var getid = $(this).attr('id')
    alert(getid);
}
})  
    })

0 个答案:

没有答案