cssやstyle指定で
tr.even {background-color:silver;}
と指定していたとして、何かのイベントなどで
this.style.backgroundColor='red';
(ここでの this は、対象の要素 - つまり <tr class="even">)などと指定し、もとに戻すときは
this.style.backgroundColor='';
と、空の文字列を指定すればうまくいくみたい。これは、正式な仕様なのかな?
例としては
<tr class="even" onmouseover="this.style.backgroundColor='blue';" onmouseleave="this.style.backgroundColor='';">
もちろん正式な仕様。 jQueryとかのソースでもそうやってると思うよ。
そうなんだ。どうもありがとう。