Selecting elements with a certain background color
问题 I want to select a bunch of span s in a div whose CSS contains a particular background color. How do I achieve this? 回答1: if i understand the question correctly, the selector [attribute=value] will not work because <span> does not contain an attribute "background-color". you can test that out quickly to confirm it won't match anything: $('#someDiv span[background-color]').size(); // returns 0 given: .one, .two { background-color: black; } .three { background-color: red; } here's a snippet