Diferència entre revisions de la pàgina «Solucio enllaços»
De wikiserver
(Es crea la pàgina amb «<!DOCTYPE html> <!-- To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the temp…».) |
|||
Línia 1: | Línia 1: | ||
+ | <source lang="java"> | ||
<!DOCTYPE html> | <!DOCTYPE html> | ||
<!-- | <!-- | ||
Línia 59: | Línia 60: | ||
</html> | </html> | ||
+ | </source> |
Revisió del 13:56, 28 gen 2015
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div>TODO write content</div>
<p>parrafo 0</p>
<p>
<a href="http://www.1.es">1</a>
</p>
<p>
<a href="http://www.2.es">2</a>
<a href="http://www.3.es">3</a>
</p>
<p>
<a href="http://www.4.es">4</a>
<a href="http://www.5.es">5</a>
</p>
<p>
<a href="http://www.6.net">6</a>
<a href="http://www.7.net">7</a>
<a href="http://www.8.net">8</a>
<a href="http://www.9.net">9</a>
</p>
<a href="http://www.10.net">10</a>
</body>
<script type="text/javascript">
var enlaces = document.getElementsByTagName("a");
var num_enlaces = document.getElementsByTagName("a").length;
document.writeln("<br> nombre d'ençallos:" + num_enlaces);
document.writeln("<br> direccions web:");
for (i = 0; i < num_enlaces; i++)
document.writeln("<br>" + enlaces[i].href);
var parrafos=document.getElementsByTagName("p");
var long=parrafos
// for(i=0;i<;i++)
// document.writeln("<br>" + document.getElementsByTagName("a")[i].href);
</script>
</html>