Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/08/2003, 01:31
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Hola, bhonox.

Esto puede servirte:
Código PHP:
<html>

<
head>
<
script>
function 
cambiar(valor) {
    
obj=document.getElementById('fila');
    if (
valor)
        
obj.style.backgroundColor='green';
    else
        
obj.style.backgroundColor='red';
}
</script>
</head>

<body>

<table border="1" width="100%">
  <tr id="fila" style="background-color:red">
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td><input type="checkbox" onclick="cambiar(this.checked)"></td>
  </tr>
</table>

</body>

</html> 
Saludos,