Gli ultimi tutorial di sviluppo web
 

HTML DOM Object Embed


oggetto Incorpora

L'Oggetto Embed è nuovo in HTML5.

L'oggetto Embed rappresenta un HTML <embed> elemento.

Accedere a un oggetto Embed

È possibile accedere a un <embed> elemento utilizzando getElementById() :

Esempio

var x = document.getElementById("myEmbed");
Prova tu stesso "

Creare un oggetto Embed

È possibile creare un <embed> elemento utilizzando il document. createElement() document. createElement() Metodo:

Esempio

var x = document.createElement("EMBED");
Prova tu stesso "

Proprietà oggetto Incorpora

Proprietà Descrizione
height Imposta o restituisce il valore height attributo in un elemento di incorporamento
src Imposta o restituisce il valore src attributo in un elemento di incorporamento
type Imposta o restituisce il valore del type di attributo in un elemento di incorporamento
width Imposta o restituisce il valore della width attributo in un elemento di incorporamento

Proprietà ed eventi standard

L'oggetto Embed supporta anche lo standard proprietà ed eventi .


Pagine correlate

HTML tutorial: HTML Plug-in

Di riferimento HTML: HTML <embed> tag