méthode javascript deleteTFoot()


  Résultats de traduction:

delete

English[dɪˈli:t] US[diˈlit]

vt.& vi. Supprimer

Troisième personne du singulier : supprime Participe présent : supprimer Passé : supprimé Participe passé : supprimé

foot

Britannique [fʊt] Américain [fʊt]

n. pied; pied (= 12 pouces ou 30,48 cm)

vt marche, pas

vt.& vi. Singulier : foots Pluriel : pieds Participe présent : footing Passé : footed Participe passé : footed

méthode javascript deleteTFoot()syntaxe

Fonction : permet de supprimer l'élément <tfoot>

Syntaxe : tableObject.deleteTFoot()

Description : Si le tableau comporte un élément <tfoot>, supprimez-le du document, sinon ne faites rien.

méthode javascript deleteTFoot()exemple

<html>
<head>
<script type="text/javascript">
function delRow()
  {
  document.getElementById('myTable').deleteTFoot()
  }
</script>
</head>
<body>

<table id="myTable" border="1">
<tr>
<td>Row1 cell1</td>
<td>Row1 cell2</td>
</tr>
<tr>
<td>Row2 cell1</td>
<td>Row2 cell2</td>
</tr>
<tfoot><td>my table foot</td></tfoot>
</table>
<br />
<input type="button" onclick="delRow()"
value="Delete table foot">

</body>
</html>

Exécuter l'instance »

Cliquez sur le bouton « Exécuter l'instance » pour afficher l'instance en ligne

Maison

vidéos

Questions et réponses