次のコードを使用して、TH 行のテキストの色を変更したいテーブルがあります。
<select>
<option onclick="document.getElementById('tablehead').style.color=''">Default</option>
<option onclick="document.getElementById('tablehead').style.color='red'">Red</option>
<option onclick="document.getElementById('tablehead').style.color='yellow'">Yellow</option>
<option onclick="document.getElementById('tablehead').style.color='green'">Green</option>
</select>
これは Firefox と同じように完全に機能しますが、他のブラウザーでテストすると機能しません。ここで何が欠けていますか?