Ver Mensaje Individual
  #1 (permalink)  
Antiguo 31/01/2008, 10:56
donfalcone
 
Fecha de Ingreso: noviembre-2007
Mensajes: 194
Antigüedad: 17 años, 1 mes
Puntos: 2
qué me estoy dejando??

Hola a tod@s!

Estoy empezando con AJAX,... y siguiendo un tutorial estoy intentando hacer el típico ejemplo de escribir y que aparezca la hora,.... pero por algun motivo no me sale

Seguramente me estoy dejando algo. Alguien me sabría decir el qué
Código PHP:
<script type="text/javascript">
var 
httpRequest;

function 
cargaContenidos(url,metodo,funcion){
        
httpRequest inicio_xhr();
    if(
httpRequest){
        
httpRequest.onreadystatechange funcion;
        
httpRequest.open(url,metodo,true);
        
httpRequest.send(null);
        }
}

function 
inicio_xhr()
{

if(
window.XMLHttpRequest){
        return new 
XMLHttpRequest();
}else if(
window.ActiveXObject){
        return new 
ActiveXObject("Microsoft.XMLHTTP");
        }
}

function 
muestraMensaje(){
        if(
httpRequest.readyState==4){
           if(
http.Status==200){
              
document.myForm.time.value httpRequest.responseText;
              }
        }
}

function 
ajaxFunction(){
        
cargaContenidos("time.php","GET",muestraMensaje);
        }
</script> 
muchas gracias!!!