esta pagina no corre en firefox ni google chrome
Publicado por veguita (1 intervención) el 06/05/2012 19:18:48
es una pagina donde el usuario pasa el puntero del mouse por un color en la celda de una tabla y el fondo de la pagina cambia al color de la celda, funciona bien en Internet Explorer pero en Firefox 12 y Google chrome no funciona. ayudenme con este problema.
sorry por la ortografia en las lineas arriba.
el codigo es este:
<html>
<head>
<title>Colores</title>
<script language=JavaScript1.2>
function cambiacolor(color)
{
document.bgColor=color
}
</script>
</head>
<body bgcolor="fuchsia" >
<center><h1><font color="#2AFF00">Página que cambia color de fondo al pasar el Mouse</font></h1></center>
<hr />
<p> </p>
<table width="800" border="5" align="center" cellspacing="4" bordercolor="yellow">
<tr>
<td height="69" colspan="4" align="center"><h1><font color="#2AFF00">OBJETOS EN JAVASCRIPT</font></h1></td>
</tr>
<tr>
<A onMouseOver="cambiacolor('Red')"><td width="200" height="125" bgcolor="Red"> </td></A>
<A onMouseOver="cambiacolor('Blue')"><td width="200" height="125" bgcolor="Blue"> </td></A>
<A onMouseOver="cambiacolor('Purple')"><td width="200" height="125" bgcolor="Purple"> </td></A>
<A onMouseOver="cambiacolor('Black')"><td width="200" height="125" bgcolor="Black"> </td></A>
</tr>
<tr>
<td width="200" height="30" align="center" valign="bottom"><font size="+3" color="#FFFfFf">Rojo</font></td>
<td width="200" height="30" align="center" valign="bottom"><font size="+3" color="#FFFfFf">Azul</font></td>
<td width="200" height="30" align="center" valign="bottom"><font size="+3" color="#FFFfFf">Púrpura</font></td>
<td width="200" height="30" align="center" valign="bottom"><font size="+3" color="#FFFfFf">Café</font></td>
</tr>
</table>
</body>
</html>
sorry por la ortografia en las lineas arriba.
el codigo es este:
<html>
<head>
<title>Colores</title>
<script language=JavaScript1.2>
function cambiacolor(color)
{
document.bgColor=color
}
</script>
</head>
<body bgcolor="fuchsia" >
<center><h1><font color="#2AFF00">Página que cambia color de fondo al pasar el Mouse</font></h1></center>
<hr />
<p> </p>
<table width="800" border="5" align="center" cellspacing="4" bordercolor="yellow">
<tr>
<td height="69" colspan="4" align="center"><h1><font color="#2AFF00">OBJETOS EN JAVASCRIPT</font></h1></td>
</tr>
<tr>
<A onMouseOver="cambiacolor('Red')"><td width="200" height="125" bgcolor="Red"> </td></A>
<A onMouseOver="cambiacolor('Blue')"><td width="200" height="125" bgcolor="Blue"> </td></A>
<A onMouseOver="cambiacolor('Purple')"><td width="200" height="125" bgcolor="Purple"> </td></A>
<A onMouseOver="cambiacolor('Black')"><td width="200" height="125" bgcolor="Black"> </td></A>
</tr>
<tr>
<td width="200" height="30" align="center" valign="bottom"><font size="+3" color="#FFFfFf">Rojo</font></td>
<td width="200" height="30" align="center" valign="bottom"><font size="+3" color="#FFFfFf">Azul</font></td>
<td width="200" height="30" align="center" valign="bottom"><font size="+3" color="#FFFfFf">Púrpura</font></td>
<td width="200" height="30" align="center" valign="bottom"><font size="+3" color="#FFFfFf">Café</font></td>
</tr>
</table>
</body>
</html>
Valora esta pregunta
0