Esempio
Rimuovere il <caption> elemento da una tabella:
document.getElementById("myTable").deleteCaption();
Prova tu stesso " Definizione e l'utilizzo
Il deleteCaption() metodo rimuove il primo <caption> elemento (and its content) dal tavolo.
Tip: Per creare un nuovo <caption> elemento per un tavolo, usare il createCaption() metodo.
Supporto browser
Metodo | |||||
---|---|---|---|---|---|
deleteCaption() | sì | sì | sì | sì | sì |
Sintassi
tableObject .deleteCaption()
parametri
Nessuna |
Dettagli tecnici
Valore di ritorno: | Nessun valore di ritorno |
---|
Altri esempi
Esempio
Creare ed eliminare un <caption> elemento:
function myCreateFunction() {
var table =
document.getElementById("myTable").createCaption();
table.innerHTML = "<b>My table caption</b>";
}
function
myDeleteFunction() {
document.getElementById("myTable").deleteCaption();
}
Prova tu stesso " Pagine correlate
Di riferimento HTML: HTML <caption> tag
<Tabella Object