(reprise du message précédent)
Merci à vous tous pour ces infos sur javascript.
cependant je reviens sur mon problème de base car ça ne marche pas exactement comme je veux
voilà mon code :
ça marche (ça créer une ligne) sous Firefox mais pas sous IE !!
j'ai pourtant rajouter var devant les declaration de variables, comme afbilou l'a dit !
vous avez une idée pour expliquer ça ?
Modifié par Poich (19 Jul 2005 - 09:42)
Merci à vous tous pour ces infos sur javascript.
cependant je reviens sur mon problème de base car ça ne marche pas exactement comme je veux
voilà mon code :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>test</title>
<script language="JavaScript1.2" type="text/javascript">
<!--
function createLigneDePalmares(){
var tableau=document.getElementById("palmares");
var ligne=document.createElement("tr");
var col=document.createElement("td");
col.setAttribute("colspan", "4");
var test=document.createTextNode("nouvelle ligne");
tableau.appendChild(ligne);
ligne.appendChild(col);
col.appendChild(test);
}
-->
</script>
</head>
<boby>
<table width="100%" class='tbcadre' id="palmares" border="1">
<tr>
<td class='darkrow2' colspan='4'><div align="center"><b>Palmarès</b> [ <a id="ajoutLigne" style="cursor:pointer;" href="javascript:createLigneDePalmares();">ajouter une ligne de palmarès</a> ]</div></td>
</tr>
<tr>
<td class="darkrow3" width="105"><div align="center"><b>Date</b><br />(jj-mm-aaaa)</div></td>
<td class="darkrow3"><div align="center"><b>Lieu</b></div></td>
<td class="darkrow3"><div align="center"><b>Titre</b></div></td>
<td class="darkrow3" width="20"><div align="center"><b>Supprimer</b></div></td>
</tr>
<tr id="empty">
<td class="tbline" colspan="4"><div align="center">Vide ...</div></td>
</tr>
</table>
</boby>
</html>
ça marche (ça créer une ligne) sous Firefox mais pas sous IE !!
j'ai pourtant rajouter var devant les declaration de variables, comme afbilou l'a dit !
vous avez une idée pour expliquer ça ?
Modifié par Poich (19 Jul 2005 - 09:42)