forked from josecodetech/Tutorial-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccesoDom.html
28 lines (25 loc) · 838 Bytes
/
accesoDom.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<h2>Por etiqueta</h2>
<h2 id="identificador">Por identificador</h2>
<h2 class="clase">Por clase</h2>
<div id="contenido">
<p class="clase">Contenido</p>
</div>
<body>
<script>
let etiqueta = document.getElementsByTagName("h2")[0];
let identificador = document.getElementById("identificador");
let clase = document.getElementsByClassName("clase")[0];
let contenido = document.getElementById("contenido");
contenido.innerHTML = etiqueta.innerHTML + "<br/>" +
identificador.innerHTML + "<br/>" + clase.innerHTML;
</script>
</body>
</html>