Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/09/2009, 03:16
criszam
 
Fecha de Ingreso: septiembre-2009
Mensajes: 2
Antigüedad: 15 años, 3 meses
Puntos: 0
cambiar imagen dentro de una tabla al cargar

Hola a todos

Para un sitio web tengo que crear un script para que cada vez que se carga la página de inicio, aparezca una imagen diferente dentro del cuadro principal.

No se mucho de javascript, pero he encontrado un código que me cambia las imágenes al cargar la página pero no dentro de la tabla, sino como si fuera la imagen de fondo.
¿me podéis indicar que tengo que cambiar para que la imagen que se carga cada vez aparezca dentro de <table> </table>?
Muchas gracias,

Cristina

<SCRIPT language="JavaScript">

<!-- Begin JS Script -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'img1.jpg'
theImages[1] = 'img2.jpg'
theImages[2] = 'img3.jpg'
theImages[3] = 'img4.jpg'
theImages[4] = 'img5.jpg'



// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

// End -->
</script>


<SCRIPT language="JavaScript">
<!-- Begin
showImage();
// End -->
</script>