21/05/2008, 05:30
|
| Moderador extraterrestre | | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 23 años, 1 mes Puntos: 61 | |
Respuesta: Paso de parámetros de ventana hija a ventana padre Algo así?
Página madre:
Código:
<html>
<head>
<title>Untitled</title>
<script type="text/javascript">
ie=(navigator.appName.indexOf("Microsoft")!=-1); //Descubrir si se esta visitando la pagina con IE
corregir_x=10; //Correccion de ancho de Firefox con respecto a IE
corregir_y=5; //Correccion de alto de Firefox con respecto a IE
function abrir(esto,donde,x,y){
ancho=(ie)?x:(x+corregir_x);
alto=(ie)?y:(y+corregir_y);
pepe=window.open(esto, donde,'width='+ancho+',height='+alto);
}
</script>
</head>
<body>
<a href="pepe.html" target="_blank" class="Estilo1" onClick="abrir(this.href, this.target,590,200); return false;">Añadir Imagen</a><br />
<textarea cols="60" rows="10" name="PEPE" id="PEPE"></textarea>
</body>
</html>
Página pepe.html
Código:
<html>
<head>
<title>Untitled</title>
</head>
<body>
<img style = "cursor:pointer" src = "http://www.forosdelweb.com/images/smilies/scared.gif" onclick = "opener.document.getElementById('PEPE').value + = '[img]'+this.src+'[/img]';self.close()" >
<img style = "cursor:pointer" src = "http://static.forosdelweb.com/fdwtheme/images/buttons/reputation.gif" onclick = "opener.document.getElementById('PEPE').value + = '[img]'+this.src+'[/img]';self.close()" >
<img style = "cursor:pointer" src = "http://static.forosdelweb.com/fdwtheme/images/statusicon/user_online.gif" onclick = "opener.document.getElementById('PEPE').value + = '[img]'+this.src+'[/img]';self.close()" >
<img style = "cursor:pointer" src = "http://www.forosdelweb.com/images/smilies/scared.gif" onclick = "opener.document.getElementById('PEPE').value + = '[img]'+this.src+'[/img]';self.close()" >
</body>
</html>
Dime si te sirve.
__________________ Cómo escribir
No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia. |