Los últimos tutoriales de desarrollo web
 

Window opener Property

<Ventana Object

Ejemplo

Escribir un texto a la fuente (parent) de ventana:

// Open a new window
var myWindow = window.open("", "myWindow", "width=200, height=100");

// Write some text in the new window
myWindow.document.write("<p>This is 'myWindow'</p>");     

// Write some text in the window that created the new window            
myWindow.opener.document.write("<p>This is the source window!</p>"); 
Inténtalo tú mismo "

Definición y Uso

La propiedad abridor devuelve una referencia a la ventana que se crea la ventana.

Cuando se abre una ventana con la ventana. open() método, se puede utilizar esta propiedad de la ventana de destino para volver detalles de la fuente (parent) ventana.

Coding Tip: window.opener. close() window.opener. close() cerrará la fuente (parent) ventana.


Soporte del navegador

Propiedad
opener

Sintaxis

window.opener

Detalles técnicos

Valor de retorno: Una referencia a la ventana que se crea la ventana

<Ventana Object