Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/12/2009, 21:27
Dany_s
 
Fecha de Ingreso: diciembre-2009
Ubicación: Misiones
Mensajes: 867
Antigüedad: 14 años, 11 meses
Puntos: 65
Respuesta: each en array con jquery

algo asi?


modifica nomas la url de jquery y la url del xml
Código HTML:
<html>
    <head>
        <title>Ejemplo</title>
        <script src="jquery.js" type="text/javascript"></script>
    </head>
    <script type="text/javascript">

    var name = new Array();
    
    $( function (){
        $.ajax({
            type: "GET",
            url: 'xml.xml',
            dataType: "xml",
            success: function(xml) {
                $(xml).find('usuario').each(function(i, val){
                    name[i] = new Array(2);
                    name[i][0] = $(val).attr('id');
                    name[i][1] = $(val).attr('nombre');
                });
            }
        });
        $("a").click( function (){
            for (i = 0; i < name.length; i++){
                alert("ID "+name[i][0] +" Nombre: "+name[i][1]);
            }
        });

    });
    </script>
<body>
    <a href="#" >ver</a>
</body>
</html>