特定のインライン カラー スタイルをタグから削除したいと考えています。色は 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>