[PHP/JS] Checkbox name="resa[]"
Résolu/Fermé
axel50397
Messages postés
113
Date d'inscription
mercredi 8 août 2007
Statut
Membre
Dernière intervention
17 mars 2014
-
11 avril 2010 à 12:37
axel50397 Messages postés 113 Date d'inscription mercredi 8 août 2007 Statut Membre Dernière intervention 17 mars 2014 - 11 avril 2010 à 21:06
axel50397 Messages postés 113 Date d'inscription mercredi 8 août 2007 Statut Membre Dernière intervention 17 mars 2014 - 11 avril 2010 à 21:06
A voir également:
- [PHP/JS] Checkbox name="resa[]"
- Easy php - Télécharger - Divers Web & Internet
- Js/kryptik.ad ✓ - Forum Virus
- Php natif - Forum PHP
- Get_magic_quotes_gpc php 8 ✓ - Forum PHP
- Todo: <product name> - Forum Virus
1 réponse
axel50397
Messages postés
113
Date d'inscription
mercredi 8 août 2007
Statut
Membre
Dernière intervention
17 mars 2014
16
11 avril 2010 à 21:06
11 avril 2010 à 21:06
function test_box(chkbox, dmsg) { var msg = "S'il n'y a pas au moins une case cochée,\nComment effectuer la "+dmsg+" ??"; if (chkbox.length) { for (i=0; i<chkbox.length; i++) { if(chkbox[i].checked) return(true); } } else { if (chkbox.checked) return(true); } alert(msg); return(false); }
L'attribut length n'existe pas quand il n'y a qu'un seul élément.
Merci à Tuxkowo =)