Ver Mensaje Individual
  #11 (permalink)  
Antiguo 01/09/2009, 19:49
GENESISBM
 
Fecha de Ingreso: enero-2009
Mensajes: 119
Antigüedad: 15 años, 10 meses
Puntos: 1
Respuesta: Temporizador para pasar al otro DIV

Código:
<!-- INCLUDE overall_header.html -->
<script type="text/javascript">
<!--
function preloader(){
        var xmlhttp=false;
        try{
                xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
        }catch(e){
                try{
                        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
                }catch(E){
                        xmlhttp = false;
                }
        }
 
        if(!xmlhttp && typeof XMLHttpRequest!='undefined'){
                xmlhttp = new XMLHttpRequest();
        }
        return xmlhttp;
}
 
function publicidad(){
        var contenido, preloader;
		contenido.style.display = "block"
        contenido.innerHTML = ajax.responseText;
        contenido = document.getElementById('paginacapa');
        preloader = document.getElementById('distractor');
        //creamos el objeto XMLHttpRequest
        ajax=preloader(); 
        ajax.open("GET", "pagina_que_hara_el_proceso.asp",true);  
        ajax.onreadystatechange=function(){
                if(ajax.readyState==1){
                }else if(ajax.readyState==4){
                        if(ajax.status==200){
							    contenido.style.display = "block"
                                contenido.innerHTML = ajax.responseText; 
                        }
                }
        }
        ajax.send(null);
}
 
window.onload = function () {setInterval("publicidad()", 7000);};
//-->
</script>

<div id="distractor" align="center">
CARGA PERFECTAMENTE
</div>
<div id="paginacapa" style="display:none">
NO CARGA, ES EL CONTENIDO, VAMOS LA PAGINA EN SI
</div>
Tengo esto, y sigue sin cargar la pagina principal, nose que hago mal... en esta linea que tengo que poner?

ajax.open("GET", "pagina_que_hara_el_proceso.asp",true);

Me he fijado que en Internet explorer, a los 7 segundos, me salta un error, de estos que abajo a la izquierda, sale la señal de exclamación y me pone:

"Style" es nulo o no es un objeto
arcade.php

Nose si ayudara, me imagino que estara algo mal del codigo ajax, decir que yo solo tengo este archivo, no llamo a ningun otro, ni nada (nose del tema) y que es un foro PHPBB.