IFrame Object
L'oggetto IFrame rappresenta un HTML <iframe> elemento.
Accedere a un oggetto IFrame
È possibile accedere a un <iframe> elemento utilizzando getElementById() :
Suggerimento: è anche possibile accedere a un <iframe> elemento utilizzando la window.frames proprietà.
Creare un oggetto IFrame
È possibile creare un <iframe> elemento utilizzando il document. createElement() document. createElement() Metodo:
Proprietà oggetto IFrame
= Proprietà aggiunta in HTML5.
Proprietà | Descrizione |
---|---|
align | Non supportato in HTML5. Utilizzare style.cssFloat invece. Imposta o restituisce il valore align attributo in un iframe |
contentDocument | Restituisce l'oggetto documento generato da un iframe |
contentWindow | Restituisce l'oggetto window generata da un iframe |
frameBorder | Non supportato in HTML5. Utilizzare style.border invece. Imposta o restituisce il valore del frameborder dell'attributo in un iframe |
height | Imposta o restituisce il valore height attributo in un iframe |
longDesc | Non supportato in HTML5. Imposta o restituisce il valore del longdesc dell'attributo in un iframe |
marginHeight | Non supportato in HTML5. Utilizzare style.margin invece. Imposta o restituisce il valore del marginheight dell'attributo in un iframe |
marginWidth | Non supportato in HTML5. Utilizzare style.margin invece. Imposta o restituisce il valore del marginwidth dell'attributo in un iframe |
name | Imposta o restituisce il valore del name dell'attributo in un iframe |
sandbox | Restituisce il valore della sandbox di attributo in un iframe |
scrolling | Non supportato in HTML5. Imposta o restituisce il valore della scrolling dell'attributo in un iframe |
seamless | Imposta o restituisce se un iframe dovrebbe apparire come si tratta di una parte del documento che contiene (no borders or scrollbars) , oppure no |
src | Imposta o restituisce il valore del src attributo in un iframe |
srcdoc | Imposta o restituisce il valore del srcdoc dell'attributo in un iframe |
width | Imposta o restituisce il valore della width attributo in un iframe |
Proprietà ed eventi standard
L'oggetto IFrame supporta anche lo standard proprietà ed eventi .
Pagine correlate
Di riferimento HTML: HTML <iframe> tag