Ver Mensaje Individual
  #5 (permalink)  
Antiguo 14/01/2015, 12:09
grossbergsteven
 
Fecha de Ingreso: diciembre-2014
Mensajes: 69
Antigüedad: 9 años, 10 meses
Puntos: 2
Respuesta: AJAX JQUERY colaboración

Ya modifique y no hace nada:

Código HTML:
Ver original
  1. <!DOCTYPE html>
  2.   <meta charset="utf-8">
  3.   <meta http-equiv="X-UA-Compatible" content="IE=edge">
  4.   <title></title>
  5.   <link rel="stylesheet" href="">
  6.   <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
  7. </head>
  8.   <script>
  9.   $(document).ready(function(){
  10. $("#Autom").append("<ul></ul>");
  11. });
  12. $.ajax({
  13. type: "GET",
  14. url: "http://ws1.incasports.com/reporte/logrosdeporte.php?liga=nba",
  15. dataType: "xml",
  16. success: function(xml) {
  17. }
  18. $(xml).find('equipo1').each(function(){
  19. var nombre = $(this).find('nombre').text();
  20. var ref = $(this).find('ref').text();
  21. $("<li></li>").html(nombre + "-" + ref).appendTo("#Autom ul");
  22. });
  23. error: function() {
  24. alert("The XML File could not be processed correctly.");
  25. }
  26. });  
  27.   </script>
  28. </body>
  29. </html>