Bonjour et bonne année 2018 à toutes et tous.
Voilà j'ai un petit soucis d'affichage avec mon code :
J'ai un formulaire et 2 boutons radios qui doivent m'afficher un formulaire distinct selon le choix.
Seulement ça n'affiche rien :
voici mon code :
merci pour votre aide.
Cordialement.
Voilà j'ai un petit soucis d'affichage avec mon code :
J'ai un formulaire et 2 boutons radios qui doivent m'afficher un formulaire distinct selon le choix.
Seulement ça n'affiche rien :
voici mon code :
<html dir="ltr">
<head>
<script language="text/javascript">
function afficher_locataire()
{
if(document.getElementById('oui').checked)
{
document.getElementById('divCacher').style.display="block";
document.getElementById('divCacher2').style.display="none";
}
else if (document.getElementById('non').checked)
{
document.getElementById('divCacher2').style.display="block";
document.getElementById('divCacher').style.display="none";
}
}
</script>
</head>
<body>
<div class=" bd-headline-4">
<div class="bd-container-inner">
<h3>
Locataire
</h3>
</div>
</div>
<table>
<tr>
<td>
<input type="radio" name="choix" value="oui" onClick="afficher_locataire();" id="oui"/> Locataire existant
<input type="radio" name="choix" value="non" onClick="afficher_locataire();" id="non"/> Nouveau locataire
</td>
</tr>
</table>
<div id="divCacher" style="display:none;">
<input type="hidden" value="locataire_existe" name="loc1">
Locataire existant : Choisissez !!!
</div>
<div id="divCacher2" style="display:none;">
<input type="hidden" value="locataire_nouveau" name="loc2">
Nouveau locataire : Créez !!!
</div>
</body>
</html>
merci pour votre aide.
Cordialement.