Ver Mensaje Individual
  #8 (permalink)  
Antiguo 17/08/2007, 19:17
gvargas
 
Fecha de Ingreso: octubre-2006
Ubicación: México D.F
Mensajes: 210
Antigüedad: 18 años
Puntos: 0
Re: Ayuda: Recibir varios datos con Ajax

Prueba asi:

En un archivo PHP:
Código PHP:
<?php
header
('Content-Type: text/xml');
?>
<datos>
    <nombre>carlo</nombre>
    <apellido>vega</apellido>
</datos>

El script en js
Código PHP:
objAjaxEnv = new getAjax();
    
objAjaxEnv.open('GET''archivo.php' true);
.
.
.

if (
objAjaxEnv.readyState == 4){
    var 
nombreobjAjaxEnv.responseXML.getElementsByTagName('nombre')[0];
    var 
apellidoobjAjaxEnv.responseXML.getElementsByTagName('apellido')[0];
     
  
alert('Nombre: ' nombre.firstChild.data ' Apellido: ' apellido.firstChild.data);

        


Seguro que funciona !


... a mi me rula.

Un saludo.