30/04/2002, 12:06
|
| Moderador extraterrestre | | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 23 años, 1 mes Puntos: 61 | |
Re: cambiar bgcolor de una tabla A ver, he hecho esto. A ver si te sirve. Hay dos páginas: inicial que es la que tiene la tabla cuyo color de fondo hay que cambiar y que abre la siguiente. seleccion Que contiene la tabla de colores para seleccionar
--------------inicial.html----------------
<html>
<head>
<title>Inicial</title>
</head>
<body onload="window.open('seleccion.html', '', 'width=200,height=100,')">
<table width="100%" height="100%" id="casa">
<tr>
<td>
&nbsp;
</td>
</tr>
</table>
</body>
</html>
---------------------------------------------
-----------seleccion.html--------------------
<html>
<head>
<title>seleccion</title>
</head>
<body style="margin:0px 0px 0px 0px 0px;padding;0px 0px 0px 0px;">
<table style="cursor:hand" cellspacing="0" cellpadding="0" width="200" height="100">
<tr>
<td bgcolor="red" onclick="opener.casa.style.background='red'&q uot;>&nbsp;</td>
<td bgcolor="yellow" onclick="opener.casa.style.background='yellow '">&nbsp;</td>
<td bgcolor="green" onclick="opener.casa.style.background='green' ">&nbsp;</td>
<td bgcolor="navy" onclick="opener.casa.style.background='navy'& quot;>&nbsp;</td>
</tr>
<tr>
<td bgcolor="black" onclick="opener.casa.style.background='black' ">&nbsp;</td>
<td bgcolor="white" onclick="opener.casa.style.background='white' ">&nbsp;</td>
<td bgcolor="silver" onclick="opener.casa.style.background='silver '">&nbsp;</td>
<td bgcolor="maroon" onclick="opener.casa.style.background='maroon '">&nbsp;</td>
</tr>
</table>
</body>
</html>
-------------------------------------------
Copialas, guardalas con estos nombres en el mismo directorio y me cuentas si es lo que querías. Como ves puedes hacer la tabla todo lo complicada que quieras...
Salu2
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="190" height="51"><param name="bgcolor" value="#0066CC"><param name="movie" value="http://www.webareyou.com/Movie1.swf"><embed src="http://www.webareyou.com/Movie1.swf"></embebed></object> |