For example, in the elements below, what selector would find everything with a value of \"value2\", regardless of the attribute\'s name?
相关标签:
May I suggest having a specific attribute and then searching that specific attribute value?
HTML
<div data-name="value1"></div> <div data-name="value2"></div> <div data-name="value2"></div> <div data-name="value1"></div>
CSS
[data-name^='value2'] { background-color:red; }