07/12/2013, 07:37
|
| Colaborador | | Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 16 años, 5 meses Puntos: 1012 | |
Respuesta: Cargar webs al azar es algo sencillo Cita: var arr = ['pag1.html', 'pag2.html', 'pag3.html', etc...];
var indice = Math.floor((Math.random()*9)); // 9 elementos que tiene la matriz
//var indice = Math.floor((Math.random()*arr.length)); // o mejor aún por el largo de la matriz
window.location.href = arr[indice];
Última edición por IsaBelM; 07/12/2013 a las 09:10 |