mouse over

EddieG

Erfahrenes Mitglied
hi,
wollt bei ner tabelle en mouse over einfügen das heist wenn man über ne zeile mit der maus ist soll sich die hintergrund farbe ändern.
klappt aber irgendwie nicht
PHP:
echo "
<tr bgcolor='' onMouseOver='this.bgColor='#000';' onMouseOut='this.bgColor='');'><td width='140px'>$player->Name</td><td width='20px'>vs</td><td width='140px'>$player->Name</td> <td>$matchup</td> <td>$datum</td><td><a href=\"php_bw_load_replay.php?path=$repfile\">Details</a></td><td><a href=replays/$repfile> Download</a></td>
";
 
Hi,

die Style-Eigenschaft für die Hintergrundfarbe lautet in JS "backgroundColor", zudem fehlt bei dir das style-Objekt:

Code:
<tr onmouseover=\"this.style.backgroundColor='#000';\" onmouseout=\"this.style.backgroundColor='';\">

Und bitte beachte unsere Netiquette bzgl. der Groß- und Kleinschreibung. Vielen Dank.
 

Neue Beiträge

Zurück