

<html>
<head>
<title>DHTML Test</title>
<script>
function visibilite(thingId)
{
var targetElement;
targetElement = document.getElementById(thingId) ;
if (targetElement.style.display == "none")
{
targetElement.style.display = "" ;
} else {
targetElement.style.display = "none" ;
}
}
</script>
</head>
<body>
<a href="javascript:visibilite('divid');">lien 1</a>
<a href="javascript:visibilite('divid1');">lien 2</a>
<div id="divid" style="display:none;"><br>
Texte 1 : Bonjour !
</div>
<div id="divid1" style="display:none;">
Texte 2 : Au Revoir !
</div>
</body>
</html><html>
<head>
<title>DHTML Test</title>
<script>
function visibilite(thingId)
{
if (divid.style.display == "none")
{
divid.style.display = "" ;
divid1.style.display = "none" ;
} else {
divid.style.display = "none" ;
divid1.style.display = "" ;
}
}
</script>
</head>
<body>
<a href="javascript:visibilite('divid');">lien 1</a>
<a href="javascript:visibilite('divid1');">lien 2</a>
<div id="divid" style="display:none;"><br>
Texte 1 : Bonjour !
</div>
<div id="divid1" style="display:none;">
Texte 2 : Au Revoir !
</div>
</body>
</html>
il y a surement un petit quelque chose à ajouter?Utilisateurs parcourant ce forum: Aucun utilisateur enregistré et 0 invités