我想在其CSS包含特定背景色(bgcolor属性)的表中选择一堆td。我该如何实现?
我尝试过$("[bgcolor=#FF0000]")
,但遇到错误。 Uncaught DOMException: Failed to execute '$' on 'CommandLineAPI': '[bgcolor=#FF0000]' is not a valid selector.
<table>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td bgcolor="#FF0000">January</td>
<td bgcolor="#00FF00">$100</td>
</tr>
</table>
答案 0 :(得分:1)
要按属性值查找元素时,选择器需要双引号。
$('[bgcolor="#FF0000"]').each(function(e){
$(this).text('wow my bg is red');
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<table>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td bgcolor="#FF0000">January</td>
<td bgcolor="#00FF00">$100</td>
</tr>
</table>