Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/10/2008, 09:46
matak
 
Fecha de Ingreso: julio-2008
Ubicación: Alcañiz-Teruel-España
Mensajes: 182
Antigüedad: 16 años, 4 meses
Puntos: 5
Respuesta: Ayuda con una tonteria

Prueba asi

Código PHP:

 
function publicarComentario(_pagina,valorget,valorpost,capa){
    
    
ajaxNoticia=objetus(_pagina);
    if(
valorpost!=""){
        
ajaxNoticia.open("POST"_pagina+"?"+valorget+"&tiempo="+new Date().getTime(),true);
    } else {
        
ajaxNoticia.open("GET"_pagina+"?"+valorget+"&tiempo="+new Date().getTime(),true);
    }

/////////////////////////////////////////////////////////
    
if(valorpost!=""){
        
ajaxNoticia.setRequestHeader("Content-Type""application/x-www-form-urlencoded");
        
ajaxNoticia.send(valorpost);
    } else {
        
ajaxNoticia.send(null);
    }
/////////////////////////////////////////////////////////

    
ajaxNoticia.onreadystatechange=function() {    
        if (
ajaxNoticia.readyState==1){            
                
document.getElementById(capa).innerHTML '<div style="background-color:#fff; width:392px; margin:20px auto; text-align:center; padding:5px; color:#ccc; font-size:2em">Cargando <img src="working.gif" /></div>';                                
        }
        
        
alert(ajaxNoticia.readyState);

        if (
ajaxNoticia.readyState==4) {            
            if(
ajaxNoticia.status==200){  
                    
document.getElementById(capa).innerHTML 'si';            
                
document.getElementById(capa).innerHTML ajaxNoticia.responseText;            
            } 
/*else if(ajax.status==404){
                capa.innerHTML = "La direccion no existe";
            } else {
                capa.innerHTML = "Error: ".ajax.status;
            }*/
        
}        
    }
    


__________________
Si quieres puedes y si puedes debes. Imposible is nothing!!!