Récup valeur input radio en javascript
Fermé
Alexis_62
Messages postés
97
Date d'inscription
mercredi 25 juin 2008
Statut
Membre
Dernière intervention
24 juillet 2015
-
22 févr. 2012 à 11:59
Alexis_62 Messages postés 97 Date d'inscription mercredi 25 juin 2008 Statut Membre Dernière intervention 24 juillet 2015 - 22 févr. 2012 à 12:46
Alexis_62 Messages postés 97 Date d'inscription mercredi 25 juin 2008 Statut Membre Dernière intervention 24 juillet 2015 - 22 févr. 2012 à 12:46
A voir également:
- Récup valeur input radio en javascript
- Radio française - Télécharger - Médias et Actualité
- Telecharger javascript - Télécharger - Langages
- Input signal out of range - Forum Ecran
- Logiciel gratuit calcul valeur nutritionnelle - Télécharger - Santé & Bien-être
- Retrouver une pub radio - Forum Musique / Radio / Clip
1 réponse
Alexis_62
Messages postés
97
Date d'inscription
mercredi 25 juin 2008
Statut
Membre
Dernière intervention
24 juillet 2015
4
22 févr. 2012 à 12:46
22 févr. 2012 à 12:46
Problème résolu, je suis passé par autre chose :
<script>function selection(myform){ if (myform.radGender[0].checked) { alert("Vous avez choisi : " + myform.radGender[0].value); window.document.location.href = 'index.html'; } if (myform.radGender[1].checked) { alert("Vous avez choisi : " + myform.radGender[1].value); window.document.location.href = 'index.html'; } if (myform.radGender[2].checked) { alert("Vous avez choisi :" + myform.radGender[2].value); window.document.location.href = 'index.html'; } if (!myform.radGender[0].checked && !myform.radGender[1].checked && !myform.radGender[2].checked) { alert("Homme ? Femme ? Il faut choisir ! Si tu ne sais pas, c'est que tu es Androgyne !"); } }</script>