大きなテーブルの行のbgcolors値を置き換える簡単なjQueryスクリプトがあります。ただし、IE6-9では機能しません。
これが私のコードです:
<script type="text/javascript" >
$(document).ready(function() {
// Swap all blue tr bg colors to red and grey shades
$('tr[bgcolor=#9BB9FB]').attr('bgcolor','#E6B8B7');
$('tr[bgcolor=#B9CBFD]').attr('bgcolor','#F2DCDB');
$('tr[bgcolor=#B6D3FC]').attr('bgcolor','#F2DCDB');
$('tr[bgcolor=#015B91]').attr('bgcolor','#E6B8B7');
$('tr[bgcolor=#8EBCFD]').attr('bgcolor','#B5B5B5');
$('tr[bgcolor=#015B91 ]').attr('bgcolor','#e6b8b7');
});
</script>