1

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

4

1 回答 1

0

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

现场演示

redColored = $('#parentid').children().filter(function(){ 
    if(this.style.color == 'red')
      return $(this);
})
于 2013-01-29T09:08:03.290 回答