使用jquery选择相同的彩色元素

时间:2013-01-29 09:06:10

标签: jquery

我想根据特定颜色查询网页。我目前正在使用以下页面http://api.jquery.com/。现在我想要选择所有蓝色的元素,这样做的最佳方法是什么?

1 个答案:

答案 0 :(得分:0)

您可以使用filter()按照给定条件过滤掉匹配的元素。

<强> Live Demo

redColored = $('#parentid').children().filter(function(){ 
    if(this.style.color == 'red')
      return $(this);
})