Guest User

Untitled

a guest
Jan 18th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <script type="text/javascript"
  6. src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js">
  7. </script>
  8.  
  9. <script>
  10. $(document).ready(function() { //se empieza a ejecutar cuando el DOM esté listo
  11.  
  12. $.get("marcadores.xml", {}, function(xml) { //Abrimos el archivo marcadores.xml
  13.  
  14. //El ciclo se va repetir cada vez que se encuentre la etiqueta Usuario
  15.  
  16. $('Usuario', xml).each(function() {
  17. var Sector = $(this).find('Sector').text();
  18. console.log(Sector);
  19. $('<option>'+Sector+'</option>').appendTo('#Lista')
  20. console.log(Lista)
  21. })
  22. })
  23. })
  24. </script>
  25. </head>
  26. <body>
  27. <datalist id="Lista"></datalist>
  28. <input type="text" name="Texto" list="Lista">
  29. </body>
  30. </html>
Add Comment
Please, Sign In to add comment