also mit javascript funktioniert:
<table>
<tr style="background-color: #FFFFFF;" onMouseOver="this.style.backgroundColor='#B5B5B5';" onMouseOut="this.style.backgroundColor='#FFFFFF';">
<td></td></tr></table>
somit verändern sich die hintergrundfarbe beim mouseover
aber wenn ihc jetzt nicht 'this' sondern eine andere tr verändern will sollt es so gehen:
<table>
<tr style="background-color: #FFFFFF;" onMouseOver="document.peter.hans.style.backgroundColor='#B5B5B5'; " onMouseOut="this.style.backgroundColor='#FFFFFF';">
<td></td></tr></table>
<table id="peter" >
<tr style="background-color: #FFFFFF;" id="hans"><td>hhjhj</td></tr></table>
ABER ES Geht nicht weil:
JS Fehler:
document.peter.hans ist NULL oder ein Objekt
ideen?
danke - dekuju moc
f
<table>
<tr style="background-color: #FFFFFF;" onMouseOver="this.style.backgroundColor='#B5B5B5';" onMouseOut="this.style.backgroundColor='#FFFFFF';">
<td></td></tr></table>
somit verändern sich die hintergrundfarbe beim mouseover
aber wenn ihc jetzt nicht 'this' sondern eine andere tr verändern will sollt es so gehen:
<table>
<tr style="background-color: #FFFFFF;" onMouseOver="document.peter.hans.style.backgroundColor='#B5B5B5'; " onMouseOut="this.style.backgroundColor='#FFFFFF';">
<td></td></tr></table>
<table id="peter" >
<tr style="background-color: #FFFFFF;" id="hans"><td>hhjhj</td></tr></table>
ABER ES Geht nicht weil:
JS Fehler:
document.peter.hans ist NULL oder ein Objekt
ideen?
danke - dekuju moc
f
Kommentar