Buenos dias!!
Aqui estoy de nuevo:
Estoy tratando de obtener el texto que se encuentra entre las tag <h1></h1> pero javascript me devuelve esto: h1[object]. Les coloco el xhtml codigo:
Código HTML:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="sv" lang="sv">
<head>
<title>Institutionen för informatik</title>
<link href = "uppgift2.css" rel = "stylesheet" type="text/css"/>
<script type = "text/javascript" src = "uppgift2.js"></script>
</head>
<body>
<div id = "container">
<div id = "menu">
<ul>
<li><a href = "http://www.umu.se">Umeå Universitet</a></li>
<li><a href = "http://www.informatik.umu.se">Insitutionen för informatik</a></li>
<li><a href = "http://www.informatik.umu.se/gru">Grundutbildning</a></li>
</ul>
</div>
<div id = "content">
<h1>Institutionen för informatik</h1>
<p><a href = "http://www.informatik.umu.se">Institutionen för informatik</a> tillhör den Samhällsvetenskapliga fakulteten vid <a href = "http://www.umu.se">Umeå universitet</a>.</p>
</div>
</div>
</body>
</html>
Y esto es lo que he hecho desde anoche:
Código HTML:
function ini() {
var lankar = document.getElementsByTagName("a");
alert("antal länkar: " + lankar.length);
for(var i=0;i<lankar.length;i++) {
alert(lankar[i].getAttribute("href"));
}
// Aqui intento leer el tag <h1> y mostrar su contenido.
alert("h1" + document.getElementsByTagName("h1"));
}
window.onload=ini;
Como puedo arreglar esto?