Gli ultimi tutorial di sviluppo web
 

HTML DOM Object BR


BR Object

L'oggetto BR rappresenta un HTML <br> elemento.

Accedere a un oggetto BR

È possibile accedere a una <br> elemento utilizzando getElementById() :

Esempio

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

Creare un oggetto BR

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

Esempio

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

Proprietà oggetto BR

Proprietà Descrizione
clear Non supportato in HTML5. Utilizzare style.clear invece.
Imposta o restituisce il flusso del testo intorno agli oggetti galleggianti

Proprietà ed eventi standard

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


Pagine correlate

Di riferimento HTML: HTML <br> tag