lab-development-imb/web/10/demos/00_dom.html

23 lines
432 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="demo">
<span>Hallo</span>
<span>Welt</span>
</div>
<script>
const div = document.getElementById("demo");
console.log(div.nodeValue); // null (Elementknoten)
console.log(div.textContent); // "HalloWelt"
</script>
</body>
</html>