Esempio
Scopri se la finestra corrente è in una <iframe> . In tal caso, cambiare il suo URL "w3ii.com" :
var frame = window.frameElement; // Get the <iframe> element of the
window
if (frame) { // If the window is in an <iframe>,
change its source
frame.src = "http://www.w3ii.com/";
}
Prova tu stesso " Definizione e l'utilizzo
La proprietà frameElement restituisce il <iframe> elemento in cui è inserita la finestra corrente.
Se la finestra del documento non è collocato all'interno di un <iframe>, il valore di ritorno di questa proprietà è null.
Nota: Questa struttura funzionerà anche per <frame> elementi. Tuttavia, il <frame> elemento non è supportato in HTML5.
Questa proprietà è di sola lettura.
Supporto browser
I numeri nella tabella indicano la prima versione del browser che supporta pienamente la proprietà.
Proprietà | |||||
---|---|---|---|---|---|
frameElement | 18,0 | 6.0 | 1.0 | sì | sì |
Sintassi
window.frameElement
Dettagli tecnici
Valore di ritorno: | Un oggetto IFrame, che è l'ospite della finestra corrente nel documento principale, altrimenti nullo |
---|
Pagine correlate
Di riferimento HTML DOM: HTML DOM Object IFrame
Di riferimento HTML: HTML <iframe> tag
<Window Object