forked from flopezn11/DAW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
funcionalidadEquipo.js
62 lines (62 loc) · 2.66 KB
/
funcionalidadEquipo.js
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
function mostrar(opcion) {
if (opcion == 1) {
var elemento = document.getElementById("opcion1");
elemento.style.display = 'block';
var elemento2 = document.getElementById("opcion2");
elemento2.style.display = 'none';
var elemento3 = document.getElementById("opcion3");
elemento3.style.display = 'none';
var elemento4 = document.getElementById("opcion4");
elemento4.style.display = 'none';
var elemento5 = document.getElementById("opcion5");
elemento5.style.display = 'none';
}
if (opcion == 2) {
var elemento = document.getElementById("opcion2");
elemento.style.display = 'block';
var elemento2 = document.getElementById("opcion1");
elemento2.style.display = 'none';
var elemento3 = document.getElementById("opcion3");
elemento3.style.display = 'none';
var elemento4 = document.getElementById("opcion4");
elemento4.style.display = 'none';
var elemento5 = document.getElementById("opcion5");
elemento5.style.display = 'none';
}
if (opcion == 3) {
var elemento = document.getElementById("opcion3");
elemento.style.display = 'block';
var elemento2 = document.getElementById("opcion2");
elemento2.style.display = 'none';
var elemento3 = document.getElementById("opcion1");
elemento3.style.display = 'none';
var elemento4 = document.getElementById("opcion4");
elemento4.style.display = 'none';
var elemento5 = document.getElementById("opcion5");
elemento5.style.display = 'none';
}
if (opcion == 4) {
var elemento = document.getElementById("opcion4");
elemento.style.display = 'block';
var elemento2 = document.getElementById("opcion2");
elemento2.style.display = 'none';
var elemento3 = document.getElementById("opcion3");
elemento3.style.display = 'none';
var elemento4 = document.getElementById("opcion1");
elemento4.style.display = 'none';
var elemento5 = document.getElementById("opcion5");
elemento5.style.display = 'none';
}
if (opcion == 5) {
var elemento = document.getElementById("opcion5");
elemento.style.display = 'block';
var elemento2 = document.getElementById("opcion2");
elemento2.style.display = 'none';
var elemento3 = document.getElementById("opcion3");
elemento3.style.display = 'none';
var elemento4 = document.getElementById("opcion4");
elemento4.style.display = 'none';
var elemento5 = document.getElementById("opcion1");
elemento5.style.display = 'none';
}
}