-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ej 15b Anadir bebida.html
40 lines (40 loc) · 1.37 KB
/
Ej 15b Anadir bebida.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anadir bebida</title>
</head>
<body>
<div>
<ol id="bebidaList">Bebidas:
<li>Tea</li>
<li>Coffee</li>
<li>Milk</li>
<li>Agua</li>
</ol>
<p>Add your beverage:</p>
<input type="text" id="nombreBebida"><input type="button" value="Add" onclick="anadir()">
<!-- <p id="choice"></p> -->
</div>
<script>
function anadir(){
let nombre = document.getElementById("nombreBebida").value;
let nuevo = document.createElement("li");
nuevo.innerHTML = nombre;
document.getElementById("bebidaList").appendChild(nuevo);
console.log("nombre");
}
</script>
</body>
<!--
// let bebidas = document.getElementsByTagName("li");
// function choose() {
// let numero = Number(document.getElementById("numeroBebida").value);
// if (numero<1 || numero>=bebidas.length) {
// document.getElementById("choice").innerHTML = "Invalid choice";
// } else {
// document.getElementById("choice").innerHTML = bebidas[numero - 1].innerHTML;
// }
// } -->
</html>