Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/07/2013, 15:58
Avatar de Franz1628
Franz1628
 
Fecha de Ingreso: marzo-2007
Ubicación: Lima - Perú
Mensajes: 145
Antigüedad: 17 años, 8 meses
Puntos: 26
Respuesta: Código Javascript, intervalo de tiempo

Prueba con este

Código Javascript:
Ver original
  1. function URL_Aleatoria(){
  2.  
  3. url= new Array();
  4.  
  5. url[0] = "http://www.web1.com";
  6. url[1] = "http://www.web2.com";
  7.  
  8. aleatorio=Math.floor(Math.random()*url.length);  //url.length  es el tamaño del array url
  9.  
  10. alert(url[aleatorio]);
  11.  
  12. }
  13.  
  14.  
  15. var asigURL= setInterval(URL_Aleatoria,1000)  //solo pon el nombre de la funcion sin comillas
__________________
En mi Blog puedes ver articulos javascript y más...
@Franz1628