我想从任何可能出现的标签中删除特定的内联颜色样式。颜色的样式为 style="color: rgb(255, 102, 0);"。
我正在尝试仅使用 a 标签进行测试,但并没有走得太远。想法?不是 Jquery 人,所以我需要很多帮助:)。
$('a[style="color: rgb(255, 102, 0)"]').remove('[style="color: rgb(255, 102, 0)"]');
$('a[style="color: rgb(255, 102, 0)"]').remove();
<a style="color: rgb(255, 102, 0)">not orange</a>
<a style="color: rgb(255, 102, 0);">not orange</a>