Exemple
Ecrire un texte à la source (parent) fenêtre:
// 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>");
Essayez vous - même » Définition et utilisation
La propriété ouvre renvoie une référence à la fenêtre qui a créé la fenêtre.
Lors de l' ouverture d' une fenêtre à la fenêtre. open() méthode, vous pouvez utiliser cette propriété dans la fenêtre de destination pour retourner les détails de la source (parent) fenêtre.
Coding Tip: de Coding Tip: window.opener. close() window.opener. close() fermera la source (parent) fenêtre.
Support du navigateur
Propriété | |||||
---|---|---|---|---|---|
opener | Oui | Oui | Oui | Oui | Oui |
Syntaxe
window.opener
Détails techniques
Valeur de retour: | Une référence à la fenêtre qui a créé la fenêtre |
---|
<Object Window