Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想根据特定颜色查询网页。我目前正在使用以下页面http://api.jquery.com/。现在假设我想选择所有蓝色的元素,最好的方法是什么?
您可以使用filter()过滤掉具有给定条件的匹配元素。
现场演示
redColored = $('#parentid').children().filter(function(){ if(this.style.color == 'red') return $(this); })