Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/09/2010, 08:08
Avatar de bitbow
bitbow
 
Fecha de Ingreso: julio-2006
Ubicación: Distrito Federal
Mensajes: 635
Antigüedad: 17 años, 9 meses
Puntos: 34
De acuerdo Respuesta: Se puede recuperar el atributo src de un iframe o una etiqueta img?

Saludos, realice una prueba y obtuve lo siguiente, ya que yo tampoco sabia si se podia, lo he recuperado de un img.

<html>
<header><title>Prueba SRC</title></header>
<script>
function test() {
var imagen = document.getElementById('bitbow');
alert(imagen.src);

}
</script>
<body>
<form method="post" name="filtro" action="">
<img src="c:\holamundo.jpg" id="bitbow" width="100" height="100">
<br>
<a href="#" onclick="javascript:test('bitbow');"> Hola Mundo</a>
</form>
</body>
</html>

Espero sea lo que buscas, suerte.
__________________
El ego es el mayor enemigo de un hombre inteligente.