标签: jquery
我想根据特定颜色查询网页。我目前正在使用以下页面http://api.jquery.com/。现在我想要选择所有蓝色的元素,这样做的最佳方法是什么?
答案 0 :(得分:0)
您可以使用filter()按照给定条件过滤掉匹配的元素。
<强> Live Demo 强>
redColored = $('#parentid').children().filter(function(){ if(this.style.color == 'red') return $(this); })