-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathajax28.html
90 lines (64 loc) · 2.64 KB
/
ajax28.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Ajax Tutorial 28</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="text-center">Tutorial 28 AJAX</h1>
<h3>Lista desplegable utilizando XML</h3>
</div>
<div class="container">
<br>
<select id="listadeclientes" onchange="usuarioseleccionado()"></select>
<div id="info">
</div>
</div>
<script type="text/javascript">
var listadeclientes = document.getElementById('listadeclientes');
mostrarinformacion();
function mostrarinformacion(){
var xmlhttp;
if (window.XMLHttpRequest){
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function(){
if(xmlhttp.readyState === 4 && xmlhttp.status === 200){
if (xmlhttp.responseXML !== null) {
var xmldocumento = xmlhttp.responseXML;
var usuarios = "";
var persona = xmldocumento.getElementsByTagName("cliente")
for (var i = 0; i < persona.length; i++) {
usuarios += "<option>";
usuarios += persona[i].getElementsByTagName("nombre")[0].childNodes[0].nodeValue;
usuarios += "</option>";
}
listadeclientes.innerHTML = usuarios;
}
}
}
//Fin de funcion onreadystatechange
//Abro el archivo del servidor donde envio los parametros
xmlhttp.open("GET", "datos_clientes.xml", true);
// Envio la respuesta
xmlhttp.send();
}
function usuarioseleccionado(){
var e = document.getElementById("listadeclientes");
var usuario = e.options[e.selectedIndex].text;
var info = document.getElementById('info');
info.innerHTML=usuario + " fue seleccionado";
}
</script>
</body>
</html>