30/09/2010, 08:08
|
| | | Fecha de Ingreso: julio-2006 Ubicación: Distrito Federal
Mensajes: 635
Antigüedad: 18 años, 4 meses Puntos: 34 | |
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. |