Ver Mensaje Individual
  #5 (permalink)  
Antiguo 27/01/2002, 17:54
Avatar de Kaopectate
Kaopectate
Colaborador
 
Fecha de Ingreso: diciembre-2001
Ubicación: Curaçao (Antillas Holandesas)
Mensajes: 3.179
Antigüedad: 22 años, 4 meses
Puntos: 38
Re: Problemas con NetScape

JuanG, prueba el siguiente ejemplo que a mi me funciona en NetScape 6.0 e Internet Explorer 5.5 (no tengo versiones previas).

Creo que tiene que funcionar, sino, hazmelo saber para chequear mas detenidamente.

<html>
<head>
<script language="JavaScript">

var aTest = new Array(new Array("Fil0-Col0", "Fil0-Col1", "Fil0-Col2"),
new Array("Fil1-Col0", "Fil1-Col1", "Fil1-Col2"),
new Array("Fil2-Col0", "Fil2-Col1", "Fil2-Col2"));
</script>
</head>
<body>
<table border="1">
<script language="JavaScript">
var j;
for (var i = 0; i < aTest.length; i++){
document.writeln("<tr>");
for (var j = 0; j < aTest[I].length; j++){
document.writeln("<td>" + aTest[j] + "</td>");
}
document.writeln("</tr>");
}
</script>
</table>
</body>
</html>