SI, si hay "href"
aqui el completo
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es">
<head>
<title>prueba</title>
</head>
<body>
<a href="http://www.prueba1.com">1 aa</a>
<a href="http://www.prueba2.com">2 t</a>
<a href="http://www.prueba3.com">3</a>
<a href="http://www.prueba4.com">4</a>
<a href="http://www.prueba5.com">5</a>
Código Javascript
:
Ver original<script type="text/javascript">
var enlaces = document.getElementsByTagName("a");
var dir = "http://www.prueba";
var numero = 0;
for (i=0; i <6 ;i=i+1)
{
b = enlaces[i].toString();
c = b.slice(0,17);
if (c==dir)
{
numero = numero + 1;
}
alert(numero+" veces fueron iguales");
}
</script>
</body>
</html>