Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

macintoshiano.net

mudar fundo de linha da tabela no evento do mouse

Recommended Posts

hello....

como faco p/ alterar o fundo de uma linha na tabela em algum evento do mous (onmouseover, onfocus, etc....)

 

tipo

 

eu tenho uma tabela da seguinte forma:

 

<table width="100"  border="0" cellspacing="0" cellpadding="0">  <tr bgcolor="#993300">    <th bgcolor="#993300" scope="row"><font color="#FFFFFF">01</font></th>    <td> </td>  </tr>  <tr bgcolor="#993300">    <th bgcolor="#993300" scope="row"><font color="#FFFFFF">02</font></th>    <td> </td>  </tr>  <tr bgcolor="#993300">    <th bgcolor="#993300" scope="row"><font color="#FFFFFF">03</font></th>    <td> </td>  </tr></table>

e quando a pessoa passa o mouse pela linha 2 ela fica assim:

 

<table width="100"  border="0" cellspacing="0" cellpadding="0">  <tr bgcolor="#993300">    <th bgcolor="#993300" scope="row"><font color="#FFFFFF">01</font></th>    <td> </td>  </tr>  <tr bgcolor="#999900">    <th scope="row"><font color="#FFFFFF">02</font></th>    <td> </td>  </tr>  <tr bgcolor="#993300">    <th bgcolor="#993300" scope="row"><font color="#FFFFFF">03</font></th>    <td> </td>  </tr></table>

eu ja vi isso e nao me lembro onde.... :(

 

 

thanks

Compartilhar este post


Link para o post
Compartilhar em outros sites

Um exemplo:

 

<table cellspacing="0" width="50%"><tr onmouseover="this.style.backgroundColor='#C9C9C9';" onmouseout="this.style.backgroundColor='#FFFFFF';"><td>AAAAA</td><td>11111</td></tr><tr onmouseover="this.style.backgroundColor='#C9C9C9';" onmouseout="this.style.backgroundColor='#FFFFFF';"><td>BBBBBB</td><td>222222</td></tr></table>
B)

<{POST_SNAPBACK}>

 

show!!!!!

thanks

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.