Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/12/2007, 07:08
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años, 7 meses
Puntos: 834
Re: Palabras claves en JavaScript

Fijate si te sirve esto:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head>
<
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<
title>test</title>
<
script>
function 
inicio(){
patron = new RegExp("<[^>]+>([^<]+)<\/[^>]+>","g");
         
result document.body.innerHTML.match(patron);
         
cad "";
         for(
i=0;i<result.length;i++)
               
cad += result[i]+",";  
//alert(cad)
//Obtener nodeValues
aux=document.createElement('div');
aux.id='auxiliar';
aux.style.display='none';
aux.innerHTML=result.join('');
document.getElementsByTagName('body')[0].appendChild(aux);
valornodos=[];
arAUX=document.getElementById('auxiliar').getElementsByTagName('*');
for(
i=0;i<arAUX.length;i++){
valornodos.push(arAUX[i].firstChild.data);
}
document.getElementsByTagName('body')[0].removeChild(document.getElementById('auxiliar'));
alert(valornodos);
}
window.onload=inicio;
</script>

</head>

<body>
ForosDelWeb !! 
<a href="dfasdsdf">Enlace 1</a>
<a href="dfasdsdf">Enlace 2</a>
<a href="dfasdsdf">Enlace 3</a>
<p>Parrafo</p>
<div>Capa</div>
<a href="dfasdsdf">Enlace 4</a>
</body>
</body>
</html>